summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Klishin <mklishin@pivotal.io>2016-11-07 21:37:41 +0300
committerMichael Klishin <mklishin@pivotal.io>2016-11-07 21:37:41 +0300
commit86c075538a31a79973f46e94b57d066e5d6d24e9 (patch)
treebaed99dcc3fbab7b763e61a5a658c5da79e0047e /src
parentfe91a65f524d91c5bc460ce62fb5cd3c69289ae4 (diff)
downloadrabbitmq-server-git-86c075538a31a79973f46e94b57d066e5d6d24e9.tar.gz
Timeout values are in milliseconds
Diffstat (limited to 'src')
-rw-r--r--src/rabbit_table.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_table.erl b/src/rabbit_table.erl
index 5b2ea1335f..c8946e179d 100644
--- a/src/rabbit_table.erl
+++ b/src/rabbit_table.erl
@@ -90,7 +90,7 @@ wait(TableNames, Retry) ->
wait(TableNames, Timeout, Retries) ->
%% We might be in ctl here for offline ops, in which case we can't
%% get_env() for the rabbit app.
- rabbit_log:info("Waiting for Mnesia tables for ~p seconds, ~p retries left~n",
+ rabbit_log:info("Waiting for Mnesia tables for ~p ms, ~p retries left~n",
[Timeout, Retries - 1]),
Result = case mnesia:wait_for_tables(TableNames, Timeout) of
ok ->