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 7e0c421 commit 7f94fe7Copy full SHA for 7f94fe7
tests/topics/test_topic_reader.py
@@ -189,6 +189,16 @@ async def wait(fut):
189
# Start second reader for same topic, same consumer, partition 1
190
reader1 = driver.topic_client.reader(topic, consumer=topic_consumer)
191
192
+ await asyncio.sleep(1)
193
+
194
+ async with driver.topic_client.writer(topic, partition_id=0) as writer:
195
+ await writer.write_with_ack("--")
196
+ async with driver.topic_client.writer(topic, partition_id=1) as writer:
197
198
199
+ await reader0.receive_message()
200
201
202
# receive uncommited message
203
await reader1.receive_message()
204
0 commit comments