Skip to content

Commit 2fe6d7a

Browse files
committed
chore: refactor comments and start a new run
Signed-off-by: mikeee <[email protected]>
1 parent 81eab90 commit 2fe6d7a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/workflow/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ expected_stdout_lines:
1515
- '== APP == Runtime initialized'
1616
- '== APP == TestWorkflow registered'
1717
- '== APP == TestActivity registered'
18-
- '== APP == runner 1'
18+
- '== APP == runner started'
1919
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
2020
- '== APP == workflow paused'
2121
- '== APP == workflow resumed'
@@ -51,7 +51,7 @@ dapr run --app-id workflow-sequential \
5151
- '== APP == Runtime initialized'
5252
- '== APP == TestWorkflow registered'
5353
- '== APP == TestActivity registered'
54-
- '== APP == runner 1'
54+
- '== APP == runner started'
5555
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
5656
- '== APP == workflow paused'
5757
- '== APP == workflow resumed'

examples/workflow/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ func main() {
3838

3939
var wg sync.WaitGroup
4040

41-
// start workflow runner
42-
fmt.Println("runner 1")
41+
// Start workflow runner
42+
fmt.Println("runner started")
4343
wg.Add(1)
4444
go func() {
4545
defer wg.Done()

0 commit comments

Comments
 (0)