Merge pull request #2526 from wansir/log

fix: exit without error log
This commit is contained in:
KubeSphere CI Bot
2020-07-22 10:40:49 +08:00
committed by GitHub

View File

@@ -79,6 +79,7 @@ func NewControllerManagerCommand() *cobra.Command {
}
if err = Run(s, signals.SetupSignalHandler()); err != nil {
klog.Error(err)
os.Exit(1)
}
},