From e6b2253da97600fda61b6cb28c1a4e4a99fffe7a Mon Sep 17 00:00:00 2001 From: Krishna Srinivas Date: Fri, 14 Apr 2017 11:02:43 -0700 Subject: [PATCH] gateway: Fix help message for custom Azure Blob Storage endpoint. (#4113) --- cmd/gateway-main.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/gateway-main.go b/cmd/gateway-main.go index 5465b35e4..7143af642 100644 --- a/cmd/gateway-main.go +++ b/cmd/gateway-main.go @@ -31,7 +31,7 @@ var gatewayTemplate = `NAME: {{.HelpName}} - {{.Usage}} USAGE: - {{.HelpName}} {{if .VisibleFlags}}[FLAGS]{{end}} BACKEND + {{.HelpName}} {{if .VisibleFlags}}[FLAGS]{{end}} BACKEND [ENDPOINT] {{if .VisibleFlags}} FLAGS: {{range .VisibleFlags}}{{.}} @@ -47,6 +47,10 @@ EXAMPLES: 2. Start minio gateway server bound to a specific ADDRESS:PORT. $ {{.HelpName}} --address 192.168.1.101:9000 azure + + 3. Gateway server connecting to a custom Azure Blob Storage endpoint. + $ {{.HelpName}} azure https://azure-stack.domain.com + ` var gatewayCmd = cli.Command{