Skip to content

Commit

Permalink
Update manager.go
Browse files Browse the repository at this point in the history
  • Loading branch information
asim committed Jul 12, 2023
1 parent d108015 commit 3ee9d6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/runtime/manager/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ func (m *manager) Start() error {
m.running = true

// start the runtime we're going to manage
if err := runtime.DefaultRuntime.Start(); err != nil {
if err := m.Runtime.Start(); err != nil {
return err
}

Expand Down Expand Up @@ -980,7 +980,7 @@ func (m *manager) Stop() error {
default:
}

return runtime.DefaultRuntime.Stop()
return m.Runtime.Stop()
}

// String describes runtime
Expand Down

0 comments on commit 3ee9d6b

Please sign in to comment.