summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2011-03-15 17:21:19 +0000
committerMatthias Radestock <matthias@rabbitmq.com>2011-03-15 17:21:19 +0000
commit2919b96d6576a0fa2bbe9c075d200c3061027850 (patch)
treebaa6d78c8b59efd382fcd177006b1fdff2f2dd81
parent0b06bcaf2eed27870dcdf16e538c88751eee7527 (diff)
downloadrabbitmq-server-bug23948.tar.gz
cosmeticbug23948
-rw-r--r--src/file_handle_cache.erl10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/file_handle_cache.erl b/src/file_handle_cache.erl
index e8e86c7c..4f036571 100644
--- a/src/file_handle_cache.erl
+++ b/src/file_handle_cache.erl
@@ -1150,12 +1150,10 @@ notify_age(CStates, AverageAge) ->
notify_age0(Clients, CStates, Required) ->
case [CState || CState <- CStates, CState#cstate.callback =/= undefined] of
- [] ->
- ok;
- Notifications ->
- {L1, L2} = lists:split(random:uniform(length(Notifications)),
- Notifications),
- notify(Clients, Required, L2 ++ L1)
+ [] -> ok;
+ Notifications -> S = random:uniform(length(Notifications)),
+ {L1, L2} = lists:split(S, Notifications),
+ notify(Clients, Required, L2 ++ L1)
end.
notify(_Clients, _Required, []) ->