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'] = []
# NEW: Placeholder for traffic predictions (Phase 5)
try:
# Note: Implement traffic forecasting in Phase 5
# For now, initialize as empty DataFrame
import pandas as pd
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()
# Note: Implement traffic forecasting in Phase 5
# For now, initialize as empty dict (will be converted to DataFrame when implemented)
context['traffic_predictions'] = {}
logger.info("Traffic predictions: not yet implemented, using empty dict")
logger.info(
f"Shared data snapshot fetched successfully: "