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 a31000d8ad - Show all commits
@@ -320,5 +320,14 @@ async def get_executor() -> AgentExecutor:
async def start_executor(): async def start_executor():
"""Start the executor service""" """Start the executor service"""
print("start_executor() called")
try:
executor = await get_executor() executor = await get_executor()
print(f"Executor obtained: {executor is not None}, running: {executor.running}")
await executor.start() await executor.start()
print("Executor start() completed (should not reach here as start() is infinite loop)")
except Exception as e:
print(f"ERROR in start_executor: {e}")
import traceback
traceback.print_exc()
raise