Skip to content

Commit

Permalink
chore: refactor comments and start a new run
Browse files Browse the repository at this point in the history
Signed-off-by: mikeee <[email protected]>
  • Loading branch information
mikeee committed Jan 8, 2024
1 parent 81eab90 commit 2fe6d7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/workflow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ expected_stdout_lines:
- '== APP == Runtime initialized'
- '== APP == TestWorkflow registered'
- '== APP == TestActivity registered'
- '== APP == runner 1'
- '== APP == runner started'
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
- '== APP == workflow paused'
- '== APP == workflow resumed'
Expand Down Expand Up @@ -51,7 +51,7 @@ dapr run --app-id workflow-sequential \
- '== APP == Runtime initialized'
- '== APP == TestWorkflow registered'
- '== APP == TestActivity registered'
- '== APP == runner 1'
- '== APP == runner started'
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
- '== APP == workflow paused'
- '== APP == workflow resumed'
Expand Down
4 changes: 2 additions & 2 deletions examples/workflow/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ func main() {

var wg sync.WaitGroup

// start workflow runner
fmt.Println("runner 1")
// Start workflow runner
fmt.Println("runner started")
wg.Add(1)
go func() {
defer wg.Done()
Expand Down

0 comments on commit 2fe6d7a

Please sign in to comment.