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 48b52ac commit 1e6cba5Copy full SHA for 1e6cba5
components/supervisor/cmd/init.go
@@ -79,6 +79,9 @@ var initCmd = &cobra.Command{
79
supervisorDone := make(chan struct{})
80
handledByReaper := make(chan int)
81
handleSupervisorExit := func(exitCode int) {
82
+ if exitCode == 0 {
83
+ return
84
+ }
85
logs := extractFailureFromRun()
86
if shared.IsExpectedShutdown(exitCode) {
87
log.Fatal(logs)
0 commit comments