Skip to content

Commit 9b43ebc

Browse files
committed
[executor] Don't bail on unknown incoming event
1 parent 03a61d9 commit 9b43ebc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

executor/executor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ func buildEventHandler(state *internalState) events.Handler {
278278
return errMustAbort
279279
},
280280
}.Otherwise(func(_ context.Context, e *executor.Event) error {
281-
log.Fatal("unexpected event", e)
281+
log.Error("unexpected event", e)
282282
return nil
283283
})
284284
}

0 commit comments

Comments
 (0)