Skip to content

Commit

Permalink
Return 'ok' from riak_cs_console:status/1 since nodetool expects it a…
Browse files Browse the repository at this point in the history
…s success of rpc
  • Loading branch information
ksauzz committed Sep 4, 2015
1 parent ef3ca6c commit 007b71b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/riak_cs_console.erl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
status([]) ->
Stats = riak_cs_stats:get_stats(),
[io:format("~p : ~p~n", [Name, Value])
|| {Name, Value} <- Stats].
|| {Name, Value} <- Stats],
ok.

%% in progress.
cluster_info([OutFile]) ->
Expand Down

0 comments on commit 007b71b

Please sign in to comment.