This is an automated email from the ASF dual-hosted git repository.
duncangrant pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/brooklyn-docs.git
The following commit(s) were added to refs/heads/master by this push:
new e93b7b90 Fixes typo in workflow variables docs
new 02869e45 Merge pull request #374 from nakomis/fix-set-sensor-typo
e93b7b90 is described below
commit e93b7b90ad79cde93c36c2dce720a4826a9d3e70
Author: Martin Harris <[email protected]>
AuthorDate: Tue Feb 28 12:58:08 2023 +0000
Fixes typo in workflow variables docs
---
guide/blueprints/workflow/variables.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guide/blueprints/workflow/variables.md
b/guide/blueprints/workflow/variables.md
index 97fdef47..330b2475 100644
--- a/guide/blueprints/workflow/variables.md
+++ b/guide/blueprints/workflow/variables.md
@@ -163,7 +163,7 @@ The following sequence of steps (which is permitted) can
always safely be replay
```
- let integer count_local = ${entity.sensor.count} ?? 0",
- let count_local = ${count_local} + 1
-- set_sensor count = ${count_local}
+- set-sensor count = ${count_local}
```
Where workflows need to be resumed on interruption or might replay steps to
recover from other errors,