summaryrefslogtreecommitdiff
path: root/eg/simple.pl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--eg/simple.pl10
1 files changed, 7 insertions, 3 deletions
diff --git a/eg/simple.pl b/eg/simple.pl
index 6f921d6..0ed90e3 100644
--- a/eg/simple.pl
+++ b/eg/simple.pl
@@ -1,3 +1,4 @@
+
#!/usr/bin/env perl
use strict;
use warnings;
@@ -14,10 +15,13 @@ sub work {
}
package main;
+
my $w = myworker->new(
- base_uri => 'http://localhost:5000',
- queue_name => 'foo',
- fork_dispatcher => 1,
+ base_uri => 'http://localhost:5000',
+ queue_name => 'foo',
+ fork_dispatcher => 1,
+ spore_description => shift,
+ context => { presque => { url => 'http://localhost:5000' } }
);
$w->start;