Skip to content

Commit

Permalink
[FIXED JENKINS-20093] Pass jar_cache config value
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-slynko committed Oct 17, 2013
1 parent d43ea72 commit 1aca969
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/hudson/remoting/Launcher.java
Expand Up @@ -216,6 +216,10 @@ public void run() throws Exception {
} else
if(slaveJnlpURL!=null) {
List<String> jnlpArgs = parseJnlpArguments();
if (jarCache != null) {
jnlpArgs.add("-jar-cache");
jnlpArgs.add(jarCache.getPath());
}
if (this.noReconnect) {
jnlpArgs.add("-noreconnect");
}
Expand Down

0 comments on commit 1aca969

Please sign in to comment.