Skip to content

Commit

Permalink
[JENKINS-18578] - Do not use the old cache when starting agents from CLI
Browse files Browse the repository at this point in the history
Just a leftover from the previous fix, nulls are handled in hudson.remoting.Engine.
  • Loading branch information
oleg-nenashev committed Jun 9, 2017
1 parent 5f7f79e commit a547765
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/remoting/Launcher.java
Expand Up @@ -174,7 +174,7 @@ public void addClasspath(String pathList) throws Exception {
* @since 2.24
*/
@Option(name="-jar-cache",metaVar="DIR",usage="Cache directory that stores jar files sent from the master")
public File jarCache = new File(System.getProperty("user.home"),".jenkins/cache/jars");
public File jarCache = null;

/**
* Specified location of the property file with JUL settings.
Expand Down

0 comments on commit a547765

Please sign in to comment.