From b56f5f1bf71e8d9c773fe9bc4ff6426308e7ef1a Mon Sep 17 00:00:00 2001 From: Steve Kemp Date: Fri, 23 Nov 2012 14:57:52 +0000 Subject: Read the server address:port from the settings object. Along with the filename if appropriate for logging. --- bin/custodian-queue | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'bin/custodian-queue') diff --git a/bin/custodian-queue b/bin/custodian-queue index e75b5cc..cb4c3ce 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -38,10 +38,18 @@ +# +# Standard modules +# require 'beanstalk-client' require 'getoptlong' +# +# Our code +# +require 'custodian/settings' + # @@ -49,13 +57,18 @@ require 'getoptlong' # if __FILE__ == $0 then - $SERVER = "127.0.0.1:11300" $FLUSH = false $STATS = false $help = false $manual = false $MONITOR = false + # + # The beanstalkd server address. + # + settings = Custodian::Settings.instance() + $SERVER = settings.queue_server + begin opts = GetoptLong.new( [ "--flush", "-f", GetoptLong::NO_ARGUMENT ], -- cgit v1.2.1