Skip to content

Commit

Permalink
Merge pull request globus#533 from funcx-faas/ws_connect_change_2
Browse files Browse the repository at this point in the history
switch to correct websockets connect call
  • Loading branch information
yadudoc authored Jun 24, 2021
2 parents 7a1b85c + c4588ec commit 6f3c1cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion funcx_sdk/funcx/sdk/asynchronous/ws_polling_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(
async def init_ws(self, start_message_handlers=True):
headers = [self.get_auth_header()]
try:
self.ws = await websockets.client.connect(
self.ws = await websockets.connect(
self.results_ws_uri, extra_headers=headers
)
# initial Globus authentication happens during the HTTP portion of the handshake,
Expand Down

0 comments on commit 6f3c1cf

Please sign in to comment.