event_generator fix
All checks were successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
All checks were successful
ci/woodpecker/tag/build/5 Pipeline was successful
ci/woodpecker/tag/build/6 Pipeline was successful
ci/woodpecker/tag/build/4 Pipeline was successful
ci/woodpecker/tag/namespace Pipeline was successful
ci/woodpecker/tag/build/1 Pipeline was successful
ci/woodpecker/tag/config Pipeline was successful
ci/woodpecker/tag/build/7 Pipeline was successful
ci/woodpecker/tag/build/3 Pipeline was successful
ci/woodpecker/tag/build/2 Pipeline was successful
ci/woodpecker/tag/deploy/4 Pipeline was successful
ci/woodpecker/tag/deploy/3 Pipeline was successful
ci/woodpecker/tag/deploy/5 Pipeline was successful
ci/woodpecker/tag/deploy/1 Pipeline was successful
ci/woodpecker/tag/deploy/6 Pipeline was successful
ci/woodpecker/tag/deploy/2 Pipeline was successful
ci/woodpecker/tag/ingress Pipeline was successful
This commit is contained in:
@@ -559,25 +559,31 @@ async def event_generator(request: Request) -> AsyncGenerator[str, None]:
|
|||||||
redis_client = None
|
redis_client = None
|
||||||
pubsub = None
|
pubsub = None
|
||||||
|
|
||||||
# Heartbeat tracking
|
|
||||||
last_heartbeat = asyncio.get_event_loop().time()
|
|
||||||
heartbeat_interval = 15 # Safari-friendly: shorter interval
|
heartbeat_interval = 15 # Safari-friendly: shorter interval
|
||||||
|
|
||||||
|
# Use listen() iterator for blocking reads with heartbeat timeout
|
||||||
|
if pubsub:
|
||||||
|
listener = pubsub.listen()
|
||||||
|
else:
|
||||||
|
listener = None
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
# Check if client disconnected
|
# Check if client disconnected
|
||||||
if await request.is_disconnected():
|
if await request.is_disconnected():
|
||||||
logger.info("SSE client disconnected")
|
logger.info("SSE client disconnected")
|
||||||
break
|
break
|
||||||
|
|
||||||
# Try to get message from Redis (if available)
|
# Try to get message from Redis with timeout for heartbeat
|
||||||
if pubsub:
|
if listener:
|
||||||
try:
|
try:
|
||||||
|
# Wait for message with heartbeat timeout
|
||||||
|
# If no message arrives within timeout, send heartbeat
|
||||||
message = await asyncio.wait_for(
|
message = await asyncio.wait_for(
|
||||||
pubsub.get_message(ignore_subscribe_messages=True),
|
anext(listener),
|
||||||
timeout=0.1
|
timeout=heartbeat_interval
|
||||||
)
|
)
|
||||||
|
|
||||||
if message and message["type"] == "message":
|
if message["type"] == "message":
|
||||||
data = message["data"]
|
data = message["data"]
|
||||||
logger.debug(f"Sending SSE message: {data[:100]}...")
|
logger.debug(f"Sending SSE message: {data[:100]}...")
|
||||||
|
|
||||||
@@ -590,24 +596,21 @@ async def event_generator(request: Request) -> AsyncGenerator[str, None]:
|
|||||||
logger.warning(f"Failed to parse state data for cache: {e}")
|
logger.warning(f"Failed to parse state data for cache: {e}")
|
||||||
|
|
||||||
yield f"event: message\ndata: {data}\n\n"
|
yield f"event: message\ndata: {data}\n\n"
|
||||||
last_heartbeat = asyncio.get_event_loop().time()
|
|
||||||
continue # Skip sleep, check for more messages immediately
|
|
||||||
|
|
||||||
except asyncio.TimeoutError:
|
except asyncio.TimeoutError:
|
||||||
pass # No message, continue to heartbeat check
|
# No message within heartbeat interval - send heartbeat
|
||||||
|
yield ": ping\n\n"
|
||||||
|
except StopAsyncIteration:
|
||||||
|
logger.warning("Redis listener stopped")
|
||||||
|
break
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Redis error: {e}")
|
logger.error(f"Redis error: {e}")
|
||||||
# Continue with heartbeats even if Redis fails
|
# Continue with heartbeat-only mode
|
||||||
|
listener = None
|
||||||
# Sleep briefly to avoid busy loop
|
else:
|
||||||
await asyncio.sleep(0.1)
|
# Heartbeat-only mode (no Redis)
|
||||||
|
await asyncio.sleep(heartbeat_interval)
|
||||||
# Send heartbeat if interval elapsed
|
|
||||||
current_time = asyncio.get_event_loop().time()
|
|
||||||
if current_time - last_heartbeat >= heartbeat_interval:
|
|
||||||
# Comment-style ping (Safari-compatible, no event type)
|
|
||||||
yield ": ping\n\n"
|
yield ": ping\n\n"
|
||||||
last_heartbeat = current_time
|
|
||||||
|
|
||||||
except asyncio.CancelledError:
|
except asyncio.CancelledError:
|
||||||
logger.info("SSE connection cancelled by client")
|
logger.info("SSE connection cancelled by client")
|
||||||
|
|||||||
Reference in New Issue
Block a user