From 1d0afefc4eef3bb78b7b79148efa7b2c07e4ebd8 Mon Sep 17 00:00:00 2001 From: Stephanie Engel <22456349+stephanie-engel@users.noreply.github.com> Date: Mon, 10 Feb 2020 12:07:55 -0600 Subject: [PATCH] refactor: update restore cli flag descriptions (#16799) --- cmd/influxd/restore/command.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/influxd/restore/command.go b/cmd/influxd/restore/command.go index 3fa467e94d..2707a88922 100644 --- a/cmd/influxd/restore/command.go +++ b/cmd/influxd/restore/command.go @@ -62,7 +62,7 @@ func init() { { DestP: &flags.boltPath, Flag: "bolt-path", - Default: filepath.Join(dir, http.DefaultTokenFile), + Default: filepath.Join(dir, bolt.DefaultFilename), Desc: "path to target boltdb database", }, { @@ -75,7 +75,7 @@ func init() { DestP: &flags.credPath, Flag: "credentials-path", Default: filepath.Join(dir, http.DefaultTokenFile), - Desc: "path to target persistent engine files", + Desc: "path to target credentials file", }, { DestP: &flags.backupPath,