Skip to content

Commit

Permalink
Merge pull request #18 from alex-slynko-wonga/pass_jar_cache_config
Browse files Browse the repository at this point in the history
JENKINS-20093 Pass jar_cache config value
  • Loading branch information
kohsuke committed Nov 11, 2013
2 parents 4253015 + 1aca969 commit 929d2c9
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 929d2c9

Please sign in to comment.