We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86326ea commit abef2bcCopy full SHA for abef2bc
1 file changed
samples-v2/orchestration_versioning/function_app.py
@@ -20,7 +20,7 @@ def my_orchestrator(context: df.DurableOrchestrationContext):
20
activity_result = yield context.call_activity('say_hello', "v1.0")
21
else:
22
# New code path
23
- activity_result = yield context.call_activity('say_hello', "v2.0")
+ activity_result = yield context.call_activity('say_hello', f"v{context.version}")
24
25
"""
26
While the orchestration is waiting for the external event,
0 commit comments