no timeout on signal find()

This commit is contained in:
James Turk 2012-04-11 15:57:35 -04:00
parent 8a98d81801
commit 081533d647
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
oyster changelog oyster changelog
================ ================
0.3.3
-----
* S3 storage backend bugfix
* improvements to signal script
0.3.2 0.3.2
----- -----
**2012-03-29** **2012-03-29**

View File

@ -15,7 +15,7 @@ def main():
args = parser.parse_args() args = parser.parse_args()
docs = kernel.db.tracked.find({'doc_class': args.doc_class}) docs = kernel.db.tracked.find({'doc_class': args.doc_class}, timeout=False)
print '%s docs in %s' % (docs.count(), args.doc_class) print '%s docs in %s' % (docs.count(), args.doc_class)
path, func = args.function.rsplit('.', 1) path, func = args.function.rsplit('.', 1)