summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-04-09 16:44:46 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-04-09 16:44:46 +0100
commit6dfd4d2964faebda2668312cc4b3c43f3945618c (patch)
tree52994b800def6bc66b081a179ea9dc647c6c7488
parentae0e47d4a8fe4925bff698131e74d140e1a8576a (diff)
downloadrabbitmq-server-bug25855.tar.gz
More unique atombug25855
-rw-r--r--src/rabbit_disk_monitor.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_disk_monitor.erl b/src/rabbit_disk_monitor.erl
index 17d8e2f2..fbf13a90 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) ->