summaryrefslogtreecommitdiff
path: root/src/rabbit_disk_monitor.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rabbit_disk_monitor.erl')
-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) ->