Merge pull request #7 from ualsweb/claude/debug-orchestrator-issues-011CUprrHGkfVYxXwMEQHtWD

Fix orchestration saga failure due to missing pandas dependency
This commit is contained in:
ualsweb
2025-11-05 15:00:57 +01:00
committed by GitHub

View File

@@ -344,16 +344,10 @@ class OrchestrationSaga:
context['event_calendar'] = [] context['event_calendar'] = []
# NEW: Placeholder for traffic predictions (Phase 5) # NEW: Placeholder for traffic predictions (Phase 5)
try: # Note: Implement traffic forecasting in Phase 5
# Note: Implement traffic forecasting in Phase 5 # For now, initialize as empty dict (will be converted to DataFrame when implemented)
# For now, initialize as empty DataFrame context['traffic_predictions'] = {}
import pandas as pd logger.info("Traffic predictions: not yet implemented, using empty dict")
context['traffic_predictions'] = pd.DataFrame()
logger.info("Traffic predictions: not yet implemented, using empty DataFrame")
except Exception as e:
logger.warning(f"Could not fetch traffic predictions: {e}")
import pandas as pd
context['traffic_predictions'] = pd.DataFrame()
logger.info( logger.info(
f"Shared data snapshot fetched successfully: " f"Shared data snapshot fetched successfully: "