Skip to content

Commit

Permalink
Reconnect to EC2 also when error code is ExpiredToken
Browse files Browse the repository at this point in the history
  • Loading branch information
salvomarino committed Nov 22, 2024
1 parent 47818f8 commit 6638970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/hudson/plugins/ec2/EC2Cloud.java
Original file line number Diff line number Diff line change
Expand Up @@ -778,9 +778,9 @@ public Collection<PlannedNode> provision(final Label label, int excessWorkload)
if (excessWorkload == 0) break;
} catch (AmazonServiceException e) {
LOGGER.log(Level.WARNING, t + ". Exception during provisioning", e);
if (e.getErrorCode().equals("RequestExpired")) {
// JENKINS-71554: A RequestExpired error can indicate that credentials have expired so reconnect
LOGGER.log(Level.INFO, "[JENKINS-71554] Reconnecting to EC2 due to RequestExpired error");
if (e.getErrorCode().equals("RequestExpired") || e.getErrorCode().equals("ExpiredToken")) {
// A RequestExpired or ExpiredToken error can indicate that credentials have expired so reconnect
LOGGER.log(Level.INFO, "Reconnecting to EC2 due to RequestExpired or ExpiredToken error");

Check warning on line 783 in src/main/java/hudson/plugins/ec2/EC2Cloud.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered lines

Lines 781-783 are not covered by tests
try {
reconnectToEc2();
} catch (IOException e2) {
Expand Down

0 comments on commit 6638970

Please sign in to comment.