diff options
| author | Matthias Radestock <matthias@lshift.net> | 2010-02-28 11:00:32 +0000 |
|---|---|---|
| committer | Matthias Radestock <matthias@lshift.net> | 2010-02-28 11:00:32 +0000 |
| commit | a0e433961a44679244dbe3817b2c4abdba244be6 (patch) | |
| tree | e0568057c80926847f7e5efe30c7242525dfdf60 /src | |
| parent | cd7ada1e2101c8e15dcfbafa7979d56142dbddbb (diff) | |
| download | rabbitmq-server-git-a0e433961a44679244dbe3817b2c4abdba244be6.tar.gz | |
lower priority of conserve_memory below that of 'info'
This really is more of a principled change than of practical
significance since we are unlikely to end up with channels having
mailboxes full of conserve_memory messages.
The change brings 'default' closer to the 'bug21673' branch
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_channel.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl index 585c59dc9b..a56955cb96 100644 --- a/src/rabbit_channel.erl +++ b/src/rabbit_channel.erl @@ -110,7 +110,7 @@ deliver(Pid, ConsumerTag, AckRequired, Msg) -> gen_server2:cast(Pid, {deliver, ConsumerTag, AckRequired, Msg}). conserve_memory(Pid, Conserve) -> - gen_server2:pcast(Pid, 9, {conserve_memory, Conserve}). + gen_server2:pcast(Pid, 8, {conserve_memory, Conserve}). list() -> pg_local:get_members(rabbit_channels). |
