diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-26 09:23:12 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-26 09:23:12 +0000 | 
| commit | 06022289eb29ae3475030d3fd5fd478839bbdc60 (patch) | |
| tree | 8787a0ec70361ca17cdabfd5b36c8cda2ea2c5c8 /bin/custodian-queue | |
| parent | 00debd01a50ccde37a45f83940f3b07e4bee3155 (diff) | |
  Explicitly watch a "tube" - a named queue - to avoid stomping on
  anything else running under beanstalkd.
Diffstat (limited to 'bin/custodian-queue')
| -rwxr-xr-x | bin/custodian-queue | 7 | 
1 files changed, 5 insertions, 2 deletions
| diff --git a/bin/custodian-queue b/bin/custodian-queue index cb4c3ce..6298f88 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -129,9 +129,9 @@ if __FILE__ == $0 then    end    # -  #  Create the object +  #  Create the queue object.    # -  queue = Beanstalk::Pool.new([$SERVER]) +  queue = Beanstalk::Pool.new([$SERVER], "Custodian" )    #    # Alerting on a queue that is too-full? @@ -169,11 +169,14 @@ if __FILE__ == $0 then    #  Are we flushing the queue?    #    if ( $FLUSH ) +    count = 0      while( true )        begin          job = queue.reserve(1)          job.delete +        count += 1        rescue Beanstalk::TimedOut => ex +        puts "Flushed #{count} pending jobs."          exit( 0 )        end      end | 
