diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-12 21:00:16 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-12 21:00:16 +0000 |
commit | 6334b9cdfc47bd85b2ce236572e08406324d25cd (patch) | |
tree | bd0bd3cc279d8377efde2affc8dc223bfb858ca2 /worker/README |
Initial dump of code.
Diffstat (limited to 'worker/README')
-rw-r--r-- | worker/README | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/worker/README b/worker/README new file mode 100644 index 0000000..f87decb --- /dev/null +++ b/worker/README @@ -0,0 +1,13 @@ + + This is the worker component. + + It is designed to pull (testing) jobs from the beanstalk queue, executing them serially. + + The jobs will be serialized JSON objects which have the following keys in all cases: + + * test_type => ping | ssh | mysql | http | https | ... + * test_target => example.com | 192.168.0.1 | etc + + Tests may implement additional keys, they will be used or ignored as appropriate. + + There is no concept of an execution time, nor is there any threading to worry about. |