summaryrefslogtreecommitdiff
path: root/bin/custodian-enqueue
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2012-11-22 15:38:07 +0000
committerSteve Kemp <steve@steve.org.uk>2012-11-22 15:38:07 +0000
commit8cd8125b071f4a0be8ec05d40471da6821067b07 (patch)
tree25662cfd3ca6e73855d16ef8937f0ba2ff97603e /bin/custodian-enqueue
parent56bb4da159266f5b10d9787a7b9eacf788001d0c (diff)
Parse the configuration file into arrays of jobs, via our test-factory
Diffstat (limited to 'bin/custodian-enqueue')
-rwxr-xr-xbin/custodian-enqueue4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue
index c9d9232..0b4a40b 100755
--- a/bin/custodian-enqueue
+++ b/bin/custodian-enqueue
@@ -161,9 +161,9 @@ if __FILE__ == $0 then
if ( ENV['TEST'] )
# nop
elsif ( ENV['DUMP'] )
- puts test.to_json
+ puts test
else
- queue.put( test.to_json )
+ queue.put( test.to_s )
end
end