diff options
author | Matthias Radestock <matthias@rabbitmq.com> | 2011-03-15 17:21:19 +0000 |
---|---|---|
committer | Matthias Radestock <matthias@rabbitmq.com> | 2011-03-15 17:21:19 +0000 |
commit | 2919b96d6576a0fa2bbe9c075d200c3061027850 (patch) | |
tree | baa6d78c8b59efd382fcd177006b1fdff2f2dd81 /src/file_handle_cache.erl | |
parent | 0b06bcaf2eed27870dcdf16e538c88751eee7527 (diff) | |
download | rabbitmq-server-2919b96d6576a0fa2bbe9c075d200c3061027850.tar.gz |
cosmeticbug23948
Diffstat (limited to 'src/file_handle_cache.erl')
-rw-r--r-- | src/file_handle_cache.erl | 10 |
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, []) -> |