diff options
author | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-13 11:02:37 +0100 |
---|---|---|
committer | Patrick J Cherry <patrick@bytemark.co.uk> | 2011-06-13 11:02:37 +0100 |
commit | b22cbc87927553f6dbb5754281e95fe9bad2eed1 (patch) | |
tree | 5575791fe84492648a8cc92433c267815056507a /lib/mauve/timer.rb | |
parent | 495c44445642cfae8f23fadde299ad5307f5be58 (diff) |
* Tidied up mauveserver to handle HUP restarts
* Added HTML santizing to the alert class, so bad HTML is stripped as part of
processing.
* Alert#cleared? now means "not raised"
* Better error handling in the Timer class, making sure that the timer never
gets permanently frozen.
* Moved notification and packet buffers to the Server class, meaning that if
the Processor or Notifier threads crash, we don't lose all the items waiting
to be processed/notified.
* XMPP/Email Alerts now use templates, instead of instance methods.
* Emails now get sent as multipart with HTML to allow detail fields to be
shown as nature intended.
Diffstat (limited to 'lib/mauve/timer.rb')
-rw-r--r-- | lib/mauve/timer.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/mauve/timer.rb b/lib/mauve/timer.rb index 60b541c..35e7aa8 100644 --- a/lib/mauve/timer.rb +++ b/lib/mauve/timer.rb @@ -73,11 +73,6 @@ module Mauve # This is a rate-limiting step for alerts. # Kernel.sleep 0.1 - # - # Not sure if this is needed or not. But the timer thread seems to - # freeze here, apparently stuck on a select() statement. - # - Thread.pass end return if self.should_stop? or next_to_notify.nil? |