Merge pull request #1260 from harshavardhana/minio

server: Print a message if not backends are configured.
This commit is contained in:
Anand Babu (AB) Periasamy 2016-03-24 17:23:03 -07:00
commit 24ae5467c8

View File

@ -349,4 +349,5 @@ func serverMain(c *cli.Context) {
err = minhttp.ListenAndServe(apiServer) err = minhttp.ListenAndServe(apiServer)
errorIf(err.Trace(), "Failed to start the minio server.", nil) errorIf(err.Trace(), "Failed to start the minio server.", nil)
} }
console.Println(colorGreen("No known backends configured, please use minio init --help to initialize a backend."))
} }