Skip to content

Commit

Permalink
Improve readme readability
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-piles committed Sep 16, 2024
1 parent 1214398 commit bad0241
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ def process_function(task_message):
result_message['processed'] = True
return result_message

queue_processor = QueueProcessor(redis_host="localhost", redis_port=6379, queues_names_by_priority=["test_queue_1", "test_queue_2"], logger=service_logger)
queue_processor = QueueProcessor(
redis_host="localhost",
redis_port=6379,
queues_names_by_priority=["test_queue_1", "test_queue_2"],
logger=service_logger)

queue_processor.start()
```

0 comments on commit bad0241

Please sign in to comment.