fix workflow again

This commit is contained in:
lollerfirst
2025-08-24 15:43:32 +02:00
parent 7c31163d0e
commit 0aa8f3526a
2 changed files with 5 additions and 3 deletions
+4 -2
View File
@@ -128,7 +128,8 @@ class NostrRelayDiscovery:
async with websockets.connect(
relay_url,
timeout=self.connection_timeout,
open_timeout=self.connection_timeout,
close_timeout=5,
max_size=2**20, # 1MB max message size
ping_interval=None # Disable ping
) as websocket:
@@ -205,7 +206,8 @@ class NostrRelayDiscovery:
async with websockets.connect(
relay_url,
timeout=self.connection_timeout,
open_timeout=self.connection_timeout,
close_timeout=5,
max_size=2**20
) as websocket:
# Request follow lists (kind 3 events)
+1 -1
View File
@@ -1 +1 @@
websockets>=11.0.0
websockets>=12.0