Skip to content

Commit d2221d9

Browse files
Update SANO dev server
1 parent 64e2cc2 commit d2221d9

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Some examples require extra dependencies. See each sample's directory for specif
7474
* [gevent_async](gevent_async) - Combine gevent and Temporal.
7575
* [google_adk_agents](google_adk_agents) - Run Google ADK agents as durable Temporal workflows (model calls, tools, multi-agent, MCP, streaming).
7676
* [hello_nexus](hello_nexus) - Define a Nexus service, implement operation handlers, and call them from a workflow.
77+
* [hello_standalone_nexus](hello_standalone_nexus) - Use Nexus Operations without using a workflow.
7778
* [hello_standalone_activity](hello_standalone_activity) - Use activities without using a workflow.
7879
* [lambda_worker](lambda_worker) - Run a Temporal Worker inside an AWS Lambda function.
7980
* [langgraph_plugin](langgraph_plugin) - Run LangGraph workflows as durable Temporal workflows (Graph API and Functional API).

nexus_standalone_operations/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ without wrapping them in a workflow. It shows both synchronous and asynchronous
77

88
All APIs are experimental and may be subject to backwards-incompatible changes.
99

10-
Standalone Nexus operations require a server version that supports this feature. Use the dev server build at https://github.com/temporalio/cli/releases/tag/v1.7.2-standalone-nexus-operations.
10+
Standalone Nexus operations require a server version that supports this feature. Use the dev server build at https://github.com/temporalio/cli/releases/tag/v1.7.3-standalone-nexus-operations.
1111

1212
### Sample directory structure
1313

@@ -19,7 +19,7 @@ Standalone Nexus operations require a server version that supports this feature.
1919

2020
### Instructions
2121

22-
Run the [Temporal dev server build that supports standalone Nexus operations](https://github.com/temporalio/cli/releases/tag/v1.7.2-standalone-nexus-operations).
22+
Run the [Temporal dev server build that supports standalone Nexus operations](https://github.com/temporalio/cli/releases/tag/v1.7.3-standalone-nexus-operations).
2323
(If you are going to run locally, you will want to start it in another terminal; this command is blocking and runs until it receives a SIGINT (Ctrl + C) command.)
2424

2525
Start a Temporal dev server with the dynamic config flags required for standalone Nexus operations:

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ async def env(request) -> AsyncGenerator[WorkflowEnvironment, None]:
4242
env_type = request.config.getoption("--workflow-environment")
4343
if env_type == "local":
4444
env = await WorkflowEnvironment.start_local(
45-
dev_server_download_version="v1.7.2-standalone-nexus-operations",
45+
dev_server_download_version="v1.7.3-standalone-nexus-operations",
4646
dev_server_extra_args=[
4747
"--dynamic-config-value",
4848
"frontend.enableExecuteMultiOperation=true",

0 commit comments

Comments
 (0)