summaryrefslogtreecommitdiffstats
path: root/func/forkbomb.py
Commit message (Collapse)AuthorAgeFilesLines
* the os._exit(0) magic :)makkalot2008-07-231-1/+2
|
* Change bsddb which is leaking on new python versions.Krzysztof A. Adamski2008-06-071-5/+12
|
* Fixing "modulus voodoo".Krzysztof A. Adamski2008-06-061-3/+3
|
* Should start from first bucket, not second.Krzysztof A. Adamski2008-05-311-1/+1
|
* Remove a bunch of unused imports.Luke Macken2008-02-211-2/+0
|
* All exceptions, async or otherwise, now come back as easily detectable ↵Michael DeHaan2008-01-291-7/+1
| | | | | | | signatures. Use utils.is_error(result) to determine if something is an error or isn't. Example scripts as well as func-inventory have been updated. See async_test.py for examples.
* Working on async error handling, lots more to do...Michael DeHaan2008-01-231-1/+7
| | | | (If it hits no exceptions, returns are right, it's the partial error case to deal with next...)
* Double-barrel asynchronous calls. Async can now occur on both sides ↵Michael DeHaan2008-01-231-0/+1
| | | | | | | | simultaneously and still appears as if there is only one "global" job id to the API caller, the minion job id's are managed in the background, complete with partial result response as things come in which should be very nice for ajaxy implication. job_status API does still need to be modified to list active jobs as well as to store the job name.
* Moving the async and multiprocess stuff to top level so we can use themMichael DeHaan2008-01-231-0/+152
on the minion for minion side async funness.