From c73d56fc9dde28f75841310c1ee08d9e4028825b Mon Sep 17 00:00:00 2001 From: kennytm Date: Wed, 30 Oct 2019 11:02:55 +0800 Subject: [PATCH] restore: add missing '/' to help of --connect for `br restore full` (#19) --- cmd/restore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restore.go b/cmd/restore.go index 9bc6643c6a744..e5476f3c6bb80 100644 --- a/cmd/restore.go +++ b/cmd/restore.go @@ -86,7 +86,7 @@ func newFullRestoreCommand() *cobra.Command { }, } - command.Flags().String("connect", "", "the address to connect tidb, format: username:password@protocol(address)") + command.Flags().String("connect", "", "the address to connect tidb, format: username:password@protocol(address)/") command.MarkFlagRequired("connect") command.MarkFlagRequired("importer")