Skip to content

Commit 772276c

Browse files
author
Joao Eduardo Luis
committed
workloadgen: forcing the user to specify a data and journal.
These default arguments, although handy when we just want to run the test, just mess things up when we don't actually need them. If we don't specify them on the CLI, we'll end up using the default ones, and that is just annoying. Signed-off-by: Joao Eduardo Luis <[email protected]>
1 parent f2a2a6e commit 772276c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/filestore/workload_generator.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -555,10 +555,10 @@ int main(int argc, const char *argv[])
555555

556556
def_args.push_back("--osd-journal-size");
557557
def_args.push_back("400");
558-
def_args.push_back("--osd-data");
559-
def_args.push_back("workload_gen_dir");
560-
def_args.push_back("--osd-journal");
561-
def_args.push_back("workload_gen_dir/journal");
558+
// def_args.push_back("--osd-data");
559+
// def_args.push_back("workload_gen_dir");
560+
// def_args.push_back("--osd-journal");
561+
// def_args.push_back("workload_gen_dir/journal");
562562
argv_to_vec(argc, argv, args);
563563

564564
global_init(&def_args, args,

0 commit comments

Comments
 (0)