diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-12-18 11:56:32 +0200 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-12-18 11:56:32 +0200 |
commit | ca00933b7094642f218d428bf663f99f9c5e524d (patch) | |
tree | 4ea24656009aa5897293bde481ca391e42290515 /lib/custodian/worker.rb | |
parent | 048e2bfb8e8bdb152d5373b47dd54553e40e5b78 (diff) |
Removed references and support for beanstalkd.
The beanstalkd queue used to be used in the past, and we later
added support for Redis via a simple abstraction layer. But now
we've no longer tested and used beanstalkd for over a year, and
the client-libraries are no longer available as native Debian
packages.
With that in mind we've excised the code, although left the
abstraction-class in-place.
Diffstat (limited to 'lib/custodian/worker.rb')
-rw-r--r-- | lib/custodian/worker.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/worker.rb b/lib/custodian/worker.rb index ef162b2..3c71838 100644 --- a/lib/custodian/worker.rb +++ b/lib/custodian/worker.rb @@ -73,7 +73,7 @@ module Custodian @settings = settings # Connect to the queue - @queue = QueueType.create(@settings.queue_type) + @queue = RedisQueueType.new() # Get the alerter-type(s) to instantiate @alerter = @settings.alerter |