Compare commits

...

2 commits
0.1.1 ... main

Author SHA1 Message Date
ac982668c7
HTTP long polling before upgrade
All checks were successful
/ pylint (push) Successful in 1m10s
/ mypy (push) Successful in 2m47s
/ lint-and-typing (push) Successful in 2m52s
/ build-artifacts (push) Successful in 17s
/ publish-artifacts (push) Successful in 1m21s
/ build-and-push-container (push) Successful in 2m37s
/ release (push) Successful in 1m42s
2024-10-01 23:25:30 +02:00
ed24d59a92
HTTP long polling before upgrade 2024-10-01 23:24:31 +02:00
2 changed files with 3 additions and 2 deletions

View file

@ -72,7 +72,7 @@ class DockgeConnection:
Connect to the websocket
"""
# Dockge uses Socket.io for the websockets, so this URI and params are always the same
self._sio.connect(f"https://{self._host}/socket.io/", transports=['websocket'])
self._sio.connect(f"https://{self._host}/socket.io/")
self.login()
def login(self):

View file

@ -1,9 +1,10 @@
[project]
name = "dockge_cli"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"pyyaml~=6.0.1",
"pydantic~=2.8.0",
"requests~=2.32.3",
"python-socketio~=5.11.3",
"websocket-client~=1.8.0",
"tabulate ~=0.9.0",