Skip to content

Commit f080051

Browse files
committed
add Help command support for new commands.
1 parent c7065e1 commit f080051

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG/7.7.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [v7.7.1](https://github.com/aerospike/aerolab/releases/tag/7.7.1)
22

3-
_Release Date: December 16th, 2024_
3+
_Release Date: January 21st, 2025_
44

55
**Release Notes:**
66
* Security: Update go's `crypto` packages to `v0.31.0`.

src/cmdAerospikeIsStable.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ type aerospikeIsStableCmd struct {
1818
IgnoreMigrations bool `short:"i" long:"ignore-migrations" description:"If set, will ignore migrations when checking if cluster is stable"`
1919
IgnoreClusterKey bool `short:"k" long:"ignore-cluster-key" description:"If set, will not check if the cluster key matches on all nodes in the cluster"`
2020
parallelThreadsCmd
21+
Help helpCmd `command:"help" subcommands-optional:"true" description:"Print help"`
2122
}
2223

2324
func (c *aerospikeIsStableCmd) Execute(args []string) error {

src/cmdConfSC.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ type confSCCmd struct {
2121
Racks int `short:"r" long:"racks" description:"If rack-aware feature is required, set this to the number of racks you want to divide the cluster into"`
2222
WithDisks bool `short:"d" long:"with-disks" description:"If set, will attempt to configure device storage engine for the namespace, using all available devices"`
2323
parallelThreadsCmd
24+
Help helpCmd `command:"help" subcommands-optional:"true" description:"Print help"`
2425
}
2526

2627
func (c *confSCCmd) Execute(args []string) error {

0 commit comments

Comments
 (0)