We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4f136 commit 0acf176Copy full SHA for 0acf176
README.md
@@ -71,7 +71,9 @@ taskiq_broker = BrokerWrapper(broker)
71
# create periodic task
72
taskiq_broker.task(
73
message="Hi!",
74
- subject="test-subject"
+ # If you are using rabbitmq, then you need to replace subject with queue.
75
+ # If you are using kafka, then you need to replace subject with topic.
76
+ subject="test-subject",
77
schedule=[{
78
"cron": "* * * * *",
79
}],
0 commit comments