Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Commit

Permalink
Update to websockets 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
verveerpj committed May 4, 2021
1 parent 53b0e65 commit baac3ed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions python/job_runner/util/client.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import websockets
from websockets import ConnectionClosedOK
import asyncio
import cloudevents
import ssl
from websockets.exceptions import ConnectionClosed
from websockets.http import Headers
from websockets.exceptions import ConnectionClosed, ConnectionClosedOK
from websockets.datastructures import Headers


class Client:
Expand Down
2 changes: 1 addition & 1 deletion python/res/job_queue/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import typing

import websockets
from websockets.http import Headers
from websockets.datastructures import Headers
from cloudevents.http import CloudEvent, to_json
from cwrap import BaseCClass
from job_runner import JOBS_FILE, CERT_FILE
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def get_data_files():
"psutil",
"pyyaml",
"requests",
"websockets",
"websockets >= 9.0.1",
],
entry_points={
"console_scripts": ["job_dispatch.py = job_runner.job_dispatch:main"]
Expand Down

0 comments on commit baac3ed

Please sign in to comment.