diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-31 12:19:48 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-08-31 12:19:48 +0100 |
commit | b87b69ca3fb266bdb5de88b9e77da54e23e370a5 (patch) | |
tree | 94698670ecd9b8562ae41b0ab793fac821f91f97 /lib/mauve/server.rb | |
parent | 36543941d784715e962599f7bf73f4680387e610 (diff) |
Fixed up alert suppression to be less jumpy
Diffstat (limited to 'lib/mauve/server.rb')
-rw-r--r-- | lib/mauve/server.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mauve/server.rb b/lib/mauve/server.rb index 0d56f7f..a217aab 100644 --- a/lib/mauve/server.rb +++ b/lib/mauve/server.rb @@ -121,11 +121,11 @@ module Mauve # # Check buffer sizes # - if self.class.notification_buffer_size > 10 + if self.class.notification_buffer_size >= 10 logger.warn "Notification buffer has #{self.class.notification_buffer_size} messages in it" end - if self.class.packet_buffer_size > 50 + if self.class.packet_buffer_size >= 100 logger.warn "Packet buffer has #{self.class.packet_buffer_size} updates in it" end |