Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yosukehara committed Mar 9, 2016
1 parent 49e3bcc commit 3c98fac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/leo_cache_server_dcerl.erl
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ stats_1(Id, Acc) ->
undefined ->
{error, ?ERROR_COULD_NOT_GET_STATS};
Pid ->
case gen_server:call(Pid, {stats}) of
case gen_server:call(Pid, stats) of
{ok, #cache_stats{gets = Gets,
puts = Puts,
dels = Dels,
Expand Down
2 changes: 1 addition & 1 deletion src/leo_cache_server_mcerl.erl
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ stats_1(Id, Acc) ->
undefined ->
{error, ?ERROR_COULD_NOT_GET_STATS};
Pid ->
case gen_server:call(Pid, {stats}) of
case gen_server:call(Pid, stats) of
{ok, #cache_stats{gets = Gets,
puts = Puts,
dels = Dels,
Expand Down

0 comments on commit 3c98fac

Please sign in to comment.