We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e653e4e commit 0dbb3e1Copy full SHA for 0dbb3e1
livekit-api/livekit/api/livekit_api.py
@@ -13,7 +13,7 @@ def __init__(
13
api_key: Optional[str] = None,
14
api_secret: Optional[str] = None,
15
*,
16
- timeout: float = 60, # 1 minutes by default
+ timeout: aiohttp.ClientTimeout = aiohttp.ClientTimeout(total=60), # 60 seconds
17
):
18
url = url or os.getenv("LIVEKIT_URL")
19
api_key = api_key or os.getenv("LIVEKIT_API_KEY")
livekit-api/setup.py
@@ -49,7 +49,7 @@
49
python_requires=">=3.7.0",
50
install_requires=[
51
"pyjwt>=2.0.0",
52
- "aiohttp>=3.8.0",
+ "aiohttp>=3.9.0",
53
"protobuf>=3.1.0",
54
"types-protobuf>=3.1.0",
55
"livekit-protocol>=0.2.0",
0 commit comments