You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/sqlancer/MainOptions.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -50,10 +50,10 @@ public class MainOptions {
50
50
privateStringpassword = "sqlancer"; // NOPMD
51
51
52
52
@Parameter(names = "--host", description = "The host used to log into the DBMS")
53
-
privateStringhost = "sqlancer"; // NOPMD
53
+
privateStringhost = null; // NOPMD
54
54
55
55
@Parameter(names = "--port", description = "The port used to log into the DBMS")
56
-
privateStringport = "sqlancer"; // NOPMD
56
+
privateintport = -1; // NOPMD
57
57
58
58
@Parameter(names = "--print-progress-information", description = "Whether to print progress information such as the number of databases generated or queries issued", arity = 1)
0 commit comments