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.
async_timeout
1 parent 80f010f commit a53e924Copy full SHA for a53e924
setup.cfg
@@ -37,7 +37,6 @@ install_requires =
37
protobuf~=4.25.3
38
grpcio==1.62.2
39
grpcio-tools==1.62.2
40
- async-timeout~=4.0.0
41
zip_safe = false
42
include_package_data = true
43
src/etcetra/client.py
@@ -18,7 +18,6 @@
18
TypeVar,
19
Union,
20
)
21
-from async_timeout import timeout
22
23
import grpc
24
from grpc.aio import (
@@ -1617,7 +1616,7 @@ async def __aenter__(self) -> None:
1617
1616
else:
1618
self._lease_id = None
1619
try:
1620
- async with timeout(self.timeout_seconds):
+ async with asyncio.timeout(self.timeout_seconds):
1621
response = await stub.Lock(
1622
v3lock_pb2.LockRequest(
1623
name=self.name.encode(self.encoding),
0 commit comments