Skip to content

Commit

Permalink
Add space after comma in return tuple for consistency with surroundin…
Browse files Browse the repository at this point in the history
…g style
  • Loading branch information
darach committed Mar 10, 2015
1 parent 7db6323 commit 3666df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riak_core_ring_manager.erl
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ is_stable_ring(#state{ring_changed_time=Then}) ->
DeltaUS = erlang:max(0, timer:now_diff(os:timestamp(), Then)),
DeltaMS = DeltaUS div 1000,
IsStable = DeltaMS >= ?PROMOTE_TIMEOUT,
{IsStable,DeltaMS}.
{IsStable, DeltaMS}.

%% ===================================================================
%% Unit tests
Expand Down

5 comments on commit 3666df2

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from andrewjstone
at darach@3666df2

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging darach/riak_core/de_add_is_stable_predicate_to_ring_manager = 3666df2 into borshop-integration-716-de_add_is_stable_predicate_to_ring_manager

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

darach/riak_core/de_add_is_stable_predicate_to_ring_manager = 3666df2 merged ok, testing candidate = bbd7758

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@borshop
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding develop to borshop-integration-716-de_add_is_stable_predicate_to_ring_manager = bbd7758

Please sign in to comment.