diff options
| -rw-r--r-- | src/rabbit_tests.erl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index 2b53a52ca4..65d16c9449 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -526,7 +526,11 @@ test_server_status() -> control_action(Command, Args) -> control_action(Command, node(), Args). control_action(Command, Node, Args) -> - case catch rabbit_control:action(Command, Node, Args, fun io:format/2) of + case catch rabbit_control:action( + Command, Node, Args, + fun (Format, Args1) -> + io:format(Format ++ " ...~n", Args1) + end) of ok -> io:format("done.~n"), ok; |
