Skip to content

Commit d7490cb

Browse files
committed
Cleanup
1 parent abc3619 commit d7490cb

File tree

4 files changed

+3
-222
lines changed

4 files changed

+3
-222
lines changed

VERSION_FEATURE_SUMMARY.md

Lines changed: 0 additions & 199 deletions
This file was deleted.

samples-v2/orchestration_versioning/extensions.csproj

Lines changed: 0 additions & 10 deletions
This file was deleted.

samples-v2/orchestration_versioning/function_app.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,11 @@ def my_orchestrator(context: df.DurableOrchestrationContext):
3333
activity_result = yield context.call_activity('activity_b')
3434

3535
# Provide an opportunity to update and restart the app
36-
# context.set_custom_status("Waiting for Continue event...")
37-
# yield context.wait_for_external_event("Continue")
38-
# context.set_custom_status("Continue event received")
36+
context.set_custom_status("Waiting for Continue event...")
37+
yield context.wait_for_external_event("Continue")
38+
context.set_custom_status("Continue event received")
3939

4040
# You can explicitly pass a version to sub-orchestrators
41-
# This demonstrates calling sub-orchestrator with version="0.9"
4241
sub_result_with_version = yield context.call_sub_orchestrator('my_sub_orchestrator', version="0.9")
4342

4443
# Without specifying version, the sub-orchestrator will use the current defaultVersion

samples-v2/orchestration_versioning/nuget.config

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)