diff --git a/contents/writing/about/python-redis-queue-workers/index.md b/contents/writing/about/python-redis-queue-workers/index.md index 0f79a49..6665254 100644 --- a/contents/writing/about/python-redis-queue-workers/index.md +++ b/contents/writing/about/python-redis-queue-workers/index.md @@ -35,7 +35,8 @@ def process(job_id, job_data): def main(client, processing_queue, all_queue): while True: - # try to fetch a job id from ":jobs" and push it to ":jobs" + # try to fetch a job id from ":jobs" + # and push it to ":jobs" job_id = client.brpoplpush(all_queue, processing_queue) if not job_id: continue