Skip to content

Commit 7116965

Browse files
authored
Update topic_writer_asyncio.py
1 parent 66d9725 commit 7116965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ydb/_topic_writer/topic_writer_asyncio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ def __init__(self, driver: SupportedDriverType, settings: WriterSettings):
231231
self._new_messages = asyncio.Queue()
232232
self._stop_reason = self._loop.create_future()
233233
self._background_tasks = [
234-
asyncio.create_task(self._connection_loop(), name="connection_loop"),
235-
asyncio.create_task(self._encode_loop(), name="encode_loop"),
234+
asyncio.create_task(self._connection_loop()),
235+
asyncio.create_task(self._encode_loop()),
236236
]
237237

238238
self._state_changed = asyncio.Event()

0 commit comments

Comments
 (0)