Skip to content

Commit 3296884

Browse files
Remove outdated Workflow Update notes
1 parent 2755a75 commit 3296884

2 files changed

Lines changed: 0 additions & 24 deletions

File tree

docs/encyclopedia/workflow-message-passing/sending-messages.mdx

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -88,21 +88,6 @@ Signal-With-Start is a great tool for lazily initializing Workflows. When you se
8888

8989
### Sending Updates {#sending-updates}
9090

91-
:::note
92-
93-
To use the Workflow Update feature in versions prior to v1.25.0, it must be manually enabled.
94-
95-
Set the [frontend.enableUpdateWorkflowExecution](https://github.com/temporalio/temporal/blob/main/common/dynamicconfig/constants.go) and [frontend.enableUpdateWorkflowExecutionAsyncAccepted](https://github.com/temporalio/temporal/blob/main/common/dynamicconfig/constants.go) dynamic config values to `true`.
96-
97-
For example, with the Temporal CLI, run these commands:
98-
99-
```command
100-
temporal server start-dev --dynamic-config-value frontend.enableUpdateWorkflowExecution=true
101-
temporal server start-dev --dynamic-config-value frontend.enableUpdateWorkflowExecutionAsyncAccepted=true
102-
```
103-
104-
:::
105-
10691
Updates can be sent from a Temporal Client or the Temporal CLI to a Workflow Execution. This call is synchronous and will call into the corresponding Update handler. If you’d rather make an asynchronous request, you should use Signals.
10792

10893
In most languages (except Go), you may call `executeUpdate` to complete an Update and get its result.

sample-apps/go/features/updates/README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ It contains a single count integer variable. The Update handler adds the new int
1212
The second Workflow shows how to validate the Update and then handle it.
1313
It also contains a single count integer variable, but the validator function rejects the new integer if it is not positive.
1414

15-
Note that you may need to enable Updates if you are using a Temporal Server version that is older than 1.21.
16-
For example, when using the Temporal CLI dev server:
17-
18-
```
19-
temporal server start-dev --dynamic-config-value frontend.enableUpdateWorkflowExecution=true
20-
```
21-
22-
Update validator functions may not work with Server versions older than 1.21.
23-
2415
### How to run the sample
2516

2617
Run the Worker:

0 commit comments

Comments
 (0)