fix: update devops service to subscribe to correct reconciler heartbeat queue

This commit is contained in:
Nicolas 2025-08-07 18:29:59 +08:00
parent aa89bceac0
commit b5ca0cf0f5

View File

@ -15,7 +15,7 @@ def register(app):
try: try:
# Initialize services during startup to avoid blocking app initialization # Initialize services during startup to avoid blocking app initialization
print("🔧 Initializing services...") print("🔧 Initializing services...")
app.deployment_heartbeat_subscriber = AsyncMQSubscriber("devops_reconcile_heartbeat") app.deployment_heartbeat_subscriber = AsyncMQSubscriber("reconciler.output")
app.deployment_status_service = DeploymentStatusUpdateService() app.deployment_status_service = DeploymentStatusUpdateService()
print("✅ Services initialized") print("✅ Services initialized")