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 8cb3c27 commit 35949d7Copy full SHA for 35949d7
worker_versioning/app.py
@@ -20,7 +20,10 @@ async def main() -> None:
20
)
21
await wait_for_worker_and_make_current(client, "1.0")
22
23
- # Start auto-upgrading and pinned workflows
+ # Start auto-upgrading and pinned workflows. Importantly, note that when we start the workflows,
24
+ # we are using a workflow type name which does *not* include the version number. We defined them
25
+ # with versioned names so we could show changes to the code, but here when the client invokes
26
+ # them, we're demonstrating that the client remains version-agnostic.
27
auto_upgrade_workflow_id = "worker-versioning-versioning-autoupgrade_" + str(
28
uuid.uuid4()
29
0 commit comments