From 327f239c6f1cc7685839132a3749d62551fd1e0c Mon Sep 17 00:00:00 2001 From: William Baker Date: Mon, 13 Dec 2021 16:33:28 -0600 Subject: [PATCH] feat: enable remotes and replication streams feature (#341) --- cmd/influx/remote.go | 1 - cmd/influx/replication.go | 1 - 2 files changed, 2 deletions(-) diff --git a/cmd/influx/remote.go b/cmd/influx/remote.go index 0faa1e7..953c903 100644 --- a/cmd/influx/remote.go +++ b/cmd/influx/remote.go @@ -10,7 +10,6 @@ func newRemoteCmd() cli.Command { return cli.Command{ Name: "remote", Usage: "Remote connection management commands", - Hidden: true, // Remove this line when all subcommands are completed Before: middleware.NoArgs, Subcommands: []cli.Command{ newRemoteCreateCmd(), diff --git a/cmd/influx/replication.go b/cmd/influx/replication.go index 5f5a041..df1ac20 100644 --- a/cmd/influx/replication.go +++ b/cmd/influx/replication.go @@ -10,7 +10,6 @@ func newReplicationCmd() cli.Command { return cli.Command{ Name: "replication", Usage: "Replication stream management commands", - Hidden: true, // Remove this line when all subcommands are completed Before: middleware.NoArgs, Subcommands: []cli.Command{ newReplicationCreateCmd(),