Merge pull request #1435 from thomasferrandiz/fix-config-error-msg

Add error message when the config is missing at startup
This commit is contained in:
Ben Pickard
2025-07-03 09:39:42 -04:00
committed by GitHub

View File

@@ -61,6 +61,7 @@ func main() {
daemonConf, err := cniServerConfig(*configFilePath)
if err != nil {
logging.Panicf("startMultusDaemon failed to load the CNI server configuration: %v", err)
os.Exit(1)
}