Merge dev to main: Security improvements and comprehensive test infrastructure #39

Merged
jimmy merged 195 commits from dev into main 2026-04-08 01:42:27 +08:00
Showing only changes of commit 950ca59ac8 - Show all commits
+2 -1
View File
@@ -127,7 +127,8 @@ async def monitor_containers():
while True:
try:
for c in client.containers.list(all=True):
containers = await asyncio.to_thread(client.containers.list, all=True)
for c in containers:
current_status = c.status
if c.id in previous_states:
prev_status = previous_states[c.id]