From ca00933b7094642f218d428bf663f99f9c5e524d Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 18 Dec 2015 11:56:32 +0200 Subject: 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. --- bin/custodian-enqueue | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'bin/custodian-enqueue') diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index 1588638..7dd864b 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -60,10 +60,9 @@ if __FILE__ == $PROGRAM_NAME end # - # Connected to the queue - be it redis or beanstalkd + # Connected to the queue. # - settings = Custodian::Settings.instance - queue = Custodian::QueueType.create(settings.queue_type) + queue = Custodian::RedisQueueType.new() unless queue puts "Failed to connect to the #{settings.queue_type} queue" exit 1 -- cgit v1.2.1