-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1022,6 +1022,8 @@ public static RemoteControlConfiguration parseLauncherOptions(String[] args) { | |
configuration.setDebugURL(getArg(args, ++i)); | ||
} else if ("-timeout".equalsIgnoreCase(arg)) { | ||
configuration.setTimeoutInSeconds(Integer.parseInt(getArg(args, ++i))); | ||
} else if ("-browserTimeout".equalsIgnoreCase(arg)) { | ||
configuration.setBrowserTimeoutInMs(Integer.parseInt(getArg(args, ++i))); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
barancev
Author
Member
|
||
} else if ("-jettyThreads".equalsIgnoreCase(arg)) { | ||
int jettyThreadsCount = Integer.parseInt(getArg(args, ++i)); | ||
|
||
|
When I run -h on the standalone server, it says:
However, this line looks like it is setting browser timeout in ms instead, is this intended?