Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Prerequisites:
* [Schedules](src/Schedules) - How to schedule workflows to be run at specific times in the future.
* [SignalsQueries](src/SignalsQueries) - A loyalty program using Signals and Queries.
* [StandaloneActivity](src/StandaloneActivity) - Execute activities directly from a client, without a workflow.
* [Standalone Nexus Operation](src/NexusStandaloneOperations) - Execute Nexus Operations directly from a client, without a workflow.
* [SleepForDays](src/SleepForDays/) - Use a timer to send an email every 30 days.
* [Timer](src/Timer) - Use a timer to implement a monthly subscription; handle workflow cancellation.
* [UpdatableTimer](src/UpdatableTimer) - A timer that can be updated while sleeping.
Expand Down
6 changes: 3 additions & 3 deletions src/NexusStandaloneOperations/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ from client code without wrapping them in a Workflow). It shows both sync and as
> [!NOTE]
> 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.
> https://github.com/temporalio/cli/releases/tag/v1.7.3-standalone-nexus-operations.
Comment thread
Quinn-With-Two-Ns marked this conversation as resolved.

### Steps to run this sample

1. Run the [Temporal dev server build that supports standalone Nexus operations](https://github.com/temporalio/cli/releases/tag/v1.7.2-standalone-nexus-operations). (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.)
1. Run the [Temporal dev server build that supports standalone Nexus operations](https://github.com/temporalio/cli/releases/tag/v1.7.3-standalone-nexus-operations). (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.)

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

Expand All @@ -26,7 +26,7 @@ from client code without wrapping them in a Workflow). It shows both sync and as
URL, UI URL and Metrics endpoint. It should look something like this:

```
Temporal CLI 1.7.2-standalone-nexus-operations (Server 1.32.0-155.0, UI 2.49.1)
Temporal CLI 1.7.3-standalone-nexus-operations (Server 1.32.0-158.0, UI 2.52.0)

Temporal Server: localhost:7233
Temporal UI: http://localhost:8233
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public async Task RunAsync_StandaloneOperations_Succeeds()
{
DevServerOptions = new()
{
DownloadVersion = "v1.7.2-standalone-nexus-operations",
DownloadVersion = "v1.7.3-standalone-nexus-operations",
ExtraArgs =
[
"--dynamic-config-value",
Expand Down
Loading