We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc8530e commit 2a80eecCopy full SHA for 2a80eec
1 file changed
standalone-server/src/main/java/org/apache/calcite/avatica/standalone/StandaloneServer.java
@@ -96,7 +96,8 @@ public void join() throws InterruptedException {
96
97
public static void main(String[] args) {
98
final StandaloneServer server = new StandaloneServer();
99
- JCommander jc = new JCommander(server, args);
+ JCommander jc = new JCommander(server);
100
+ jc.parse(args);
101
if (server.help) {
102
jc.usage();
103
Unsafe.systemExit(ExitCodes.USAGE.ordinal());
0 commit comments