mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-12 23:51:03 +00:00
Remove -output flag from bagent
This commit is contained in:
parent
7f25abeb2e
commit
a05b772373
1 changed files with 0 additions and 8 deletions
|
|
@ -1171,9 +1171,6 @@ type BagentCommand struct {
|
|||
// Enable pretty printing of results, for human consumption.
|
||||
HumanReadable bool `json:"human-readable"`
|
||||
|
||||
// Result destination, ["stdout", "s3"]
|
||||
Output string `json:"output"`
|
||||
|
||||
// Slice of pilosa hosts to run the Benchmarks against.
|
||||
Hosts []string `json:"hosts"`
|
||||
|
||||
|
|
@ -1189,7 +1186,6 @@ func NewBagentCommand(stdin io.Reader, stdout, stderr io.Writer) *BagentCommand
|
|||
Hosts: []string{},
|
||||
AgentNum: 0,
|
||||
HumanReadable: false,
|
||||
Output: "s3",
|
||||
|
||||
Stdin: stdin,
|
||||
Stdout: stdout,
|
||||
|
|
@ -1211,7 +1207,6 @@ func (cmd *BagentCommand) ParseFlags(args []string) error {
|
|||
fs.StringVar(&pilosaHosts, "hosts", "localhost:15000", "")
|
||||
fs.IntVar(&cmd.AgentNum, "agent-num", 0, "")
|
||||
fs.BoolVar(&cmd.HumanReadable, "human", false, "")
|
||||
fs.StringVar(&cmd.Output, "output", "s3", "")
|
||||
|
||||
if err := fs.Parse(args); err != nil {
|
||||
return err
|
||||
|
|
@ -1278,9 +1273,6 @@ The following arguments are available:
|
|||
-human
|
||||
Boolean to enable human-readable format.
|
||||
|
||||
-output
|
||||
String to select output destination, "stdout" or "s3"
|
||||
|
||||
subcommands:
|
||||
diagonal-set-bits
|
||||
random-set-bits
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue