Navigation Menu

Skip to content

Commit

Permalink
[JENKINS-38541] Tweak help text for CLI -noKeepAlive option
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenc committed Sep 27, 2016
1 parent ca87021 commit 2c8824a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/hudson/remoting/Launcher.java
Expand Up @@ -190,7 +190,7 @@ public boolean verify(String s, SSLSession sslSession) {
public boolean noReconnect = false;

@Option(name = "-noKeepAlive",
usage = "Do not open the socket to the master with SO_KEEPALIVE enabled")
usage = "Disable TCP socket keep alive on connection to the master.")
public boolean noKeepAlive = false;

public static void main(String... args) throws Exception {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/remoting/jnlp/Main.java
Expand Up @@ -86,7 +86,7 @@ public class Main {
public boolean noReconnect = false;

@Option(name="-noKeepAlive",
usage="Do not open the socket to the master with SO_KEEPALIVE enabled")
usage="Disable TCP socket keep alive on connection to the master.")
public boolean noKeepAlive = false;

@Option(name = "-cert",
Expand Down

0 comments on commit 2c8824a

Please sign in to comment.