Skip to content

Commit 74c99c2

Browse files
authored
Update publish.py
1 parent a30cfc2 commit 74c99c2

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

publish.py

+9-7
Original file line numberDiff line numberDiff line change
@@ -344,24 +344,26 @@ def setup_ice_servers(self, webrtc):
344344
async def connect(self):
345345
print("Connecting to handshake server")
346346

347-
# Try different SSL contexts based on what works
347+
# Convert wss:// to ws:// for no-SSL attempt
348+
ws_server = self.server.replace('wss://', 'ws://') if self.server.startswith('wss://') else self.server
349+
348350
connection_attempts = [
349-
(lambda: ssl.create_default_context(), "standard SSL"),
350-
(lambda: ssl._create_unverified_context(), "unverified SSL"),
351-
(lambda: None, "no SSL")
351+
(lambda: ssl.create_default_context(), "standard SSL", self.server),
352+
(lambda: ssl._create_unverified_context(), "unverified SSL", self.server),
353+
(lambda: None, "no SSL", ws_server) # Use ws:// URL for no-SSL
352354
]
353355

354356
last_exception = None
355-
for create_ssl_context, context_type in connection_attempts:
357+
for create_ssl_context, context_type, server_url in connection_attempts:
356358
try:
357-
print(f"Attempting connection with {context_type}")
359+
print(f"Attempting connection with {context_type} to {server_url}")
358360
ssl_context = create_ssl_context()
359361
if ssl_context:
360362
ssl_context.check_hostname = False
361363
ssl_context.verify_mode = ssl.CERT_NONE
362364

363365
self.conn = await websockets.connect(
364-
self.server,
366+
server_url,
365367
ssl=ssl_context,
366368
ping_interval=None
367369
)

0 commit comments

Comments
 (0)