summaryrefslogtreecommitdiff
path: root/lib/custodian/settings.rb
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-02-05 11:30:35 +0000
committerSteve Kemp <steve@steve.org.uk>2015-02-05 11:30:35 +0000
commitb349e6ab6305a054bc1bf6b568a1e9fb7425f404 (patch)
treef79725efd627778e3e1e8e6abff0b0235519991e /lib/custodian/settings.rb
parentf853516b77dd58e65f7dfb08b32b93936d7567ec (diff)
Simplify code by removing configuration.
We now set the queue-address via $QUEUE_ADDRESS, otherwise we default to localhost. This works for both redis & beanstalkd.
Diffstat (limited to 'lib/custodian/settings.rb')
-rw-r--r--lib/custodian/settings.rb13
1 files changed, 3 insertions, 10 deletions
diff --git a/lib/custodian/settings.rb b/lib/custodian/settings.rb
index 897c099..bef2977 100644
--- a/lib/custodian/settings.rb
+++ b/lib/custodian/settings.rb
@@ -140,18 +140,11 @@ module Custodian
#
- # The address of the queue.
- #
- def queue_server
- _load() unless( _loaded? )
-
- @settings['queue_server'] || "127.0.0.1:11300"
- end
-
-
- #
# The type of queue to use.
#
+ # The hostname/IP address of the queue should be set in the
+ # environmental variable 'QUEUE_ADDRESS'.
+ #
def queue_type
_load() unless( _loaded? )