Skip to content

Commit

Permalink
Update websockets to 14.2, remove invalid argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Acly committed Jan 22, 2025
1 parent 346cc19 commit 964c668
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ai_diffusion/comfy_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ async def _run_job(self, job: JobInfo):
async def _listen(self):
url = websocket_url(self.url)
async for websocket in websockets.connect(
f"{url}/ws?clientId={self._id}", max_size=2**30, read_limit=2**30, ping_timeout=60
f"{url}/ws?clientId={self._id}", max_size=2**30, ping_timeout=60
):
try:
await self._subscribe_workflows()
Expand Down

0 comments on commit 964c668

Please sign in to comment.