Skip to content

Commit 8741a40

Browse files
author
Alexey Tsitkin
committed
revert comment out
1 parent b284913 commit 8741a40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eb_sqs/worker/service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def process_message(self, msg, worker):
9797
# type: (Message, Worker) -> None
9898
logger.debug('[django-eb-sqs] Read message {}'.format(msg.message_id))
9999
try:
100-
# worker.execute(msg.body)
100+
worker.execute(msg.body)
101101
logger.debug('[django-eb-sqs] Processed message {}'.format(msg.message_id))
102102
except Exception as exc:
103103
logger.error('[django-eb-sqs] Unhandled error: {}'.format(exc), exc_info=1)

0 commit comments

Comments
 (0)