remove active connection duplicate test filter

This commit is contained in:
phact 2025-09-06 00:46:35 -04:00
parent 174823f5d4
commit caa6a701d6

View file

@ -39,7 +39,6 @@ async def connector_sync(request: Request, connector_service, session_manager):
)
active_connections = [conn for conn in connections if conn.is_active]
active_connections = active_connections[:1] # TODO: Temporary workaround for duplicate connections
if not active_connections:
return JSONResponse(
{"error": f"No active {connector_type} connections found"},