fix: await pending variable extraction tasks before pipeline finishes (#198)

This commit is contained in:
Sabiha Khan 2026-03-23 10:11:17 +05:30 committed by GitHub
parent 1967a71935
commit d42c52dc87
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 53 additions and 4 deletions

View file

@ -145,7 +145,7 @@ def register_event_handlers(
logger.debug(f"Added trace URL to gathered_context: {trace_url}")
# also consider existing gathered context in workflow_run
gathered_context = {**gathered_context, **workflow_run.gathered_context}
gathered_context = {**workflow_run.gathered_context, **gathered_context}
# Set user_speech call tag
call_tags = gathered_context.get("call_tags", [])