We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de81d3 commit aa59db2Copy full SHA for aa59db2
components/supervisor/cmd/init.go
@@ -59,7 +59,7 @@ var initCmd = &cobra.Command{
59
defer close(supervisorDone)
60
61
err := runCommand.Wait()
62
- if err != nil && !(strings.Contains(err.Error(), "signal: interrupt") || strings.Contains(err.Error(), "no child processes")) {
+ if err != nil && !(strings.Contains(err.Error(), "signal: ") || strings.Contains(err.Error(), "no child processes")) {
63
if eerr, ok := err.(*exec.ExitError); ok && eerr.ExitCode() != 0 {
64
log.WithError(err).Fatal("supervisor run error with unexpected exit code")
65
}
0 commit comments