You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/workflows/build/rules-of-workflows.mdx
+28-8Lines changed: 28 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -193,14 +193,34 @@ export class MyWorkflow extends WorkflowEntrypoint {
193
193
}
194
194
```
195
195
196
-
### Set sensible retry parameters
197
-
198
-
TODO
199
-
200
-
### Name your steps clearly
196
+
### Don't mutate your incoming events
201
197
202
-
TODO
198
+
The `event` passed to your Workflow's `run` method is immutable: changes you make to the event are not persisted across steps and/or Workflow restarts.
0 commit comments