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 9d3e99d commit 99e3ab9Copy full SHA for 99e3ab9
ydb/_topic_common/common.py
@@ -91,7 +91,7 @@ def safe_call_with_result(self, coro: typing.Coroutine, timeout: typing.Union[in
91
no lost returned value from coro, but may be slower especially timeout latency - it wait coroutine cancelation.
92
"""
93
94
- if timeout <= 0:
+ if timeout is not None and timeout <= 0:
95
return self._safe_call_fast(coro)
96
97
async def call_coro():
0 commit comments