Skip to content

Commit

Permalink
JENKINS-30284 EC2 plugin too aggressive in timing in contacting new A…
Browse files Browse the repository at this point in the history
…WS instance over SSH (changed default timeouts)
  • Loading branch information
Francis Upton IV committed Jan 23, 2016
1 parent 8f98722 commit 06c7369
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/hudson/plugins/ec2/ssh/EC2UnixLauncher.java
Expand Up @@ -75,8 +75,8 @@ public class EC2UnixLauncher extends EC2ComputerLauncher {
private static final String BOOTSTRAP_AUTH_SLEEP_MS = "jenkins.ec2.bootstrapAuthSleepMs";
private static final String BOOTSTRAP_AUTH_TRIES= "jenkins.ec2.bootstrapAuthTries";

private static int bootstrapAuthSleepMs = 10000;
private static int bootstrapAuthTries = 20;
private static int bootstrapAuthSleepMs = 30000;
private static int bootstrapAuthTries = 30;

static {
String prop = System.getProperty(BOOTSTRAP_AUTH_SLEEP_MS);
Expand Down

0 comments on commit 06c7369

Please sign in to comment.