File tree 1 file changed +4
-4
lines changed
src/samples/WorkflowCore.Sample17
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ builder
15
15
.Then <Task3 >()
16
16
.CompensateWith <UndoTask3 >()
17
17
)
18
- .OnError (Models .WorkflowErrorHandling .Retry , TimeSpan .FromSeconds (5 ))
18
+ .OnError (Models .WorkflowErrorHandling .Retry , TimeSpan .FromSeconds (5 ))
19
19
.Then (context => Console .WriteLine (" End" ));
20
20
```
21
21
@@ -34,7 +34,7 @@ builder
34
34
.Then <Task3 >()
35
35
.CompensateWith <UndoTask3 >()
36
36
)
37
- .CompensateWith <CleanUp >()
37
+ .CompensateWith <CleanUp >()
38
38
.Then (context => Console .WriteLine (" End" ));
39
39
```
40
40
@@ -50,7 +50,7 @@ builder
50
50
.Then <Task2 >()
51
51
.Then <Task3 >()
52
52
)
53
- .CompensateWith <UndoEverything >()
53
+ .CompensateWith <UndoEverything >()
54
54
.Then (context => Console .WriteLine (" End" ));
55
55
```
56
56
@@ -126,4 +126,4 @@ The compensation steps can be defined by specifying the `CompensateWith` paramet
126
126
}
127
127
]
128
128
}
129
- ```
129
+ ```
You can’t perform that action at this time.
0 commit comments