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.
2 parents af40f35 + 8396c11 commit 264cb90Copy full SHA for 264cb90
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 broker, then you need to replace subject with queue.
75
+ # If you are using kafka broker, then you need to replace subject with topic.
76
+ subject="test-subject",
77
schedule=[{
78
"cron": "* * * * *",
79
}],
0 commit comments