mirror of
https://github.com/pyMC-dev/pyMC_Repeater.git
synced 2026-06-12 09:14:47 +02:00
bug:Skip already-evicted clients during eviction checks in RoomServer
This commit is contained in:
@@ -494,6 +494,10 @@ class RoomServer:
|
||||
push_failures = sync_state.get('push_failures', 0)
|
||||
last_activity = sync_state.get('last_activity', 0)
|
||||
|
||||
# Skip already-evicted clients (marked with last_activity=0)
|
||||
if last_activity == 0:
|
||||
continue
|
||||
|
||||
evict = False
|
||||
reason = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user