X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/210889a5400ac6ef247078af14c0766f3639b988..680bc629dc473d877218b1ed9351fac4020d4657:/services/keep-web/main.go diff --git a/services/keep-web/main.go b/services/keep-web/main.go index 2d563bd76f..df8a0b5c07 100644 --- a/services/keep-web/main.go +++ b/services/keep-web/main.go @@ -11,7 +11,7 @@ import ( ) var ( - defaultConfigPath = "/etc/arvados/keep-web/config.json" + defaultConfigPath = "/etc/arvados/keep-web/keep-web.yml" ) // Config specifies server configuration. @@ -53,7 +53,7 @@ func main() { var configPath string deprecated := " (DEPRECATED -- use config file instead)" flag.StringVar(&configPath, "config", defaultConfigPath, - "`path` to json configuration file") + "`path` to JSON or YAML configuration file") flag.StringVar(&cfg.Listen, "listen", "", "address:port or :port to listen on"+deprecated) flag.BoolVar(&cfg.deprecatedAllowAnonymous, "allow-anonymous", false, @@ -83,7 +83,7 @@ func main() { if err := srv.Start(); err != nil { log.Fatal(err) } - if _, err := daemon.SdNotify("READY=1"); err != nil { + if _, err := daemon.SdNotify(false, "READY=1"); err != nil { log.Printf("Error notifying init daemon: %v", err) } log.Println("Listening at", srv.Addr)