Skip to content

Commit abef2bc

Browse files
committed
Fix test app output
1 parent 86326ea commit abef2bc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

samples-v2/orchestration_versioning/function_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def my_orchestrator(context: df.DurableOrchestrationContext):
2020
activity_result = yield context.call_activity('say_hello', "v1.0")
2121
else:
2222
# New code path
23-
activity_result = yield context.call_activity('say_hello', "v2.0")
23+
activity_result = yield context.call_activity('say_hello', f"v{context.version}")
2424

2525
"""
2626
While the orchestration is waiting for the external event,

0 commit comments

Comments
 (0)