Skip to content

Commit

Permalink
JENKINS-47331 Fails to launch from configurations before the specific…
Browse files Browse the repository at this point in the history
…ation of prefixString (test removal)
  • Loading branch information
francisu committed Jan 8, 2018
1 parent 8dceeef commit c2004f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/ec2/ssh/EC2UnixLauncher.java
Expand Up @@ -192,7 +192,7 @@ protected void launch(EC2Computer computer, TaskListener listener, Instance inst
String jvmopts = computer.getNode().jvmopts;
String prefix = computer.getSlaveCommandPrefix();
String launchString = prefix + " java " + (jvmopts != null ? jvmopts : "") + " -jar " + tmpDir + "/slave.jar";
launchString = launchString.trim();
// launchString = launchString.trim();

SlaveTemplate slaveTemplate = computer.getSlaveTemplate();

Expand Down

1 comment on commit c2004f0

@Jimilian
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is it supposed to be in master?

Please sign in to comment.