diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-02-05 11:34:33 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-02-05 11:34:33 +0000 |
commit | cf350013807bf347af29f17a4c87861c194e3e10 (patch) | |
tree | e223ffbd0890bd76093d21384b45bf6426956d3d /lib | |
parent | b349e6ab6305a054bc1bf6b568a1e9fb7425f404 (diff) |
More simplification - don't pass state around.
Rather than passing our settings-object around, as well as
specific settings that are read from it, just pass the object.
The worker can read the settings directly if/when it needs to.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/worker.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index adb3a65..78e7cf0 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -74,17 +74,18 @@ module Custodian # - # Constructor: Connect to the queue + # Constructor: Connect to the queue, and setup our settings. # - def initialize( server, alerter, logfile, settings ) + def initialize( settings ) # Connect to the queue - @queue = QueueType.create( settings.queue_type ) + @queue = QueueType.create( settings.queue_type() ) # Get the alerter-type to instantiate - @alerter = alerter + @alerter = settings.alerter # Instantiate the logger. + logfile = settings.log_file @logger = Logger.new( logfile, "daily" ) # Save the settings |