diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/custodian-enqueue | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index e2e4420..4aab52e 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -178,7 +178,17 @@ if __FILE__ == $0 then elsif ( ENV['DUMP'] ) puts test else - queue.put( test.to_s ) + + # priority of new job. + priority = 1000 + + # delay before putting into queue. + delay = 0 + + # time-to-remove: how long job.reserve() will live for. + ttr = 300 + + queue.put( test.to_s, priority, delay, ttr ) end end |