make sure app exits after error in --sections argument

This commit is contained in:
Michael Demetriou 2019-06-21 10:40:40 +03:00
parent 07fe366c15
commit efbef83362
1 changed files with 1 additions and 0 deletions

1
app.go
View File

@ -240,6 +240,7 @@ func Serve() {
for _, element := range configSectionsArray {
if element != "server" && element != "db" && element != "app" {
log.Error("Invalid argument to --sections. Valid arguments are only \"server\", \"db\" and \"app\"")
os.Exit(1)
}
}
d, err := config.Configure(app.cfgFile, *configSections)