Skip to content

Commit

Permalink
fix core selector
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuzuki616 committed Sep 11, 2023
1 parent d07e61a commit dc29da8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/selector.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ type Selector struct {
func (s *Selector) Start() error {
for i := range s.cores {
err := s.cores[i].Start()
return err
if err != nil {
return err
}
}
return nil
}
Expand Down

0 comments on commit dc29da8

Please sign in to comment.