diff options
author | martinko | 2013-09-19 15:28:19 +0000 |
---|---|---|
committer | martinko | 2013-09-19 15:28:19 +0000 |
commit | 003f7959f8b466720647d67aaf113ca52f61f53d (patch) | |
tree | 4661bb9309250b7ebecae2967106b0eb8f95f706 /python/pgq/consumer.py | |
parent | 185ced570b0fee134dbf2913f02c9f5d375f1a29 (diff) |
python: amendments
Diffstat (limited to 'python/pgq/consumer.py')
-rw-r--r-- | python/pgq/consumer.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/python/pgq/consumer.py b/python/pgq/consumer.py index d109f749..b7956853 100644 --- a/python/pgq/consumer.py +++ b/python/pgq/consumer.py @@ -16,7 +16,7 @@ EV_DONE = 1 class RetriableEvent(Event): - """Event which can be retryed + """Event which can be retried Consumer is supposed to tag them after processing. """ @@ -128,4 +128,3 @@ class Consumer(BaseConsumer): """Tag event for retry. (internal)""" cx.execute("select pgq.event_retry(%s, %s, %s)", [batch_id, ev_id, retry_time]) - |