Skip to content
Snippets Groups Projects
Commit 9d428b6a authored by Chris Larsen's avatar Chris Larsen Committed by Sean Busbey
Browse files

[core] Fix an issue in #981 where the newline was missing after printing out (#1084)

the command line, thus leaving the YCSB version on the same line.

(cherry picked from commit 88ffdbbb8f4efd49a710c3602d16cdb9f8b37a14)
parent 7ecbbc36
No related branches found
No related tags found
No related merge requests found
......@@ -977,6 +977,7 @@ public final class Client {
for (String arg : args) {
System.err.print(" " + arg);
}
System.err.println();
Properties fileprops = new Properties();
int argindex = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment