From b670afaa8d3bb546d42ba4e0660602ae89774c50 Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Mon, 14 May 2018 17:46:11 -0500 Subject: [PATCH] Clean up CLI --- cmd/import.go | 1 - cmd/root.go | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/import.go b/cmd/import.go index 93fa92ee0..fe01738ad 100644 --- a/cmd/import.go +++ b/cmd/import.go @@ -61,7 +61,6 @@ omitted. If it is present then its format should be YYYY-MM-DDTHH:MM. flags.BoolVarP(&Importer.Sort, "sort", "", false, "Enables sorting before import.") flags.BoolVarP(&Importer.CreateSchema, "create", "e", false, "Create the schema if it does not exist before import.") flags.Var(&Importer.FrameOptions.TimeQuantum, "frame-time-quantum", "Time quantum for the frame") - flags.BoolVar(&Importer.FrameOptions.InverseEnabled, "frame-inverse-enabled", false, "Enable inverse frame") flags.BoolVar(&Importer.FrameOptions.RangeEnabled, "frame-range-enabled", false, "DEPRECATED - any frame can have fields. This option will be removed.") flags.StringVar(&Importer.FrameOptions.CacheType, "frame-cache-type", pilosa.CacheTypeRanked, "Cache type for the frame; valid values: none, lru, ranked") flags.Uint32Var(&Importer.FrameOptions.CacheSize, "frame-cache-size", 50000, "Cache size for the frame") diff --git a/cmd/root.go b/cmd/root.go index 72e59abeb..664bcb9eb 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -39,7 +39,7 @@ func NewRootCommand(stdin io.Reader, stdout, stderr io.Writer) *cobra.Command { This binary contains Pilosa itself, as well as common tools for administering pilosa, importing/exporting data, backing up, and more. Complete documentation is available -at https://www.pilosa.com/docs/ +at https://www.pilosa.com/docs/. Version: ` + pilosa.Version + ` Build Time: ` + pilosa.BuildTime + "\n",