diff options
| author | Simon MacMullen <simon@rabbitmq.com> | 2014-04-09 16:44:46 +0100 |
|---|---|---|
| committer | Simon MacMullen <simon@rabbitmq.com> | 2014-04-09 16:44:46 +0100 |
| commit | 2a0f78f8a3b3c24831d656c68a2eb16914b61025 (patch) | |
| tree | 52994b800def6bc66b081a179ea9dc647c6c7488 | |
| parent | 57027f571a2173d738ade566cfab899fc207fc64 (diff) | |
| download | rabbitmq-server-git-2a0f78f8a3b3c24831d656c68a2eb16914b61025.tar.gz | |
More unique atom
| -rw-r--r-- | src/rabbit_disk_monitor.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_disk_monitor.erl b/src/rabbit_disk_monitor.erl index 17d8e2f2e9..fbf13a90c8 100644 --- a/src/rabbit_disk_monitor.erl +++ b/src/rabbit_disk_monitor.erl @@ -192,9 +192,9 @@ parse_free_unix(Str) -> case string:tokens(Str, "\n") of [_, S | _] -> case string:tokens(S, " \t") of [_, _, _, Free | _] -> list_to_integer(Free) * 1024; - _ -> exit({not_found, Str}) + _ -> exit({unparseable, Str}) end; - _ -> exit({not_found, Str}) + _ -> exit({unparseable, Str}) end. parse_free_win32(CommandResult) -> |
