log backup: hidden the log backup and restore point (#34991)

ref pingcap/tidb#29501
This commit is contained in:
Zak Zhao
2022-05-27 11:56:47 +08:00
committed by GitHub
parent affcc9582a
commit 5837686f77
2 changed files with 2 additions and 0 deletions

View File

@ -160,5 +160,6 @@ func newStreamRestoreCommand() *cobra.Command {
}
task.DefineFilterFlags(command, filterOutSysAndMemTables, true)
task.DefineStreamRestoreFlags(command)
command.Hidden = true
return command
}

View File

@ -55,6 +55,7 @@ func NewStreamCommand() *cobra.Command {
command.Root().HelpFunc()(command, strings)
})
command.Hidden = true
return command
}