Skip to content

Commit

Permalink
fix(plugin): return from Start not just break the loop
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Feb 29, 2024
1 parent 875e15a commit f6b60e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func (self *Plugin[T]) Start() {

if err != nil {
if err == io.EOF {
break
return
}
panic(err)
}
Expand Down

0 comments on commit f6b60e6

Please sign in to comment.