Skip to content

Commit 98369cb

Browse files
authored
Merge pull request #5 from Willem-J-an/main
fix: increase client conn limit
2 parents 0de50b6 + 5d96499 commit 98369cb

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

hyperhdr/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ async def async_client_connect(self) -> bool:
328328
if self._writer:
329329
return True
330330

331-
future_streams = asyncio.open_connection(self._host, self._port)
331+
future_streams = asyncio.open_connection(self._host, self._port, limit=2**18)
332332
try:
333333
self._reader, self._writer = await asyncio.wait_for(
334334
future_streams, timeout=self._timeout_secs

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tool.poetry]
22
name = "hyperhdr-py-sickkick"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "HyperHDR Ambient Lighting Python Package"
5-
authors = ["sickkick <sickkick40@gmail.com"]
5+
authors = ["sickkick <sickkick40@gmail.com>"]
66
classifiers = [
77
"Intended Audience :: Developers",
88
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)