Skip to content

Commit

Permalink
Merge pull request #788 from jenkinsci/cleanups
Browse files Browse the repository at this point in the history
Update pom to 4.50
  • Loading branch information
res0nance committed Nov 14, 2022
2 parents d2fd1cc + 39836ef commit 9c8f3b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ THE SOFTWARE.
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.48</version>
<version>4.50</version>
<relativePath />
</parent>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/ec2/EC2RetentionStrategy.java
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public void start(EC2Computer c) {
InstanceState state = null;
try {
state = c.getState();
} catch (AmazonClientException | InterruptedException | NullPointerException e) {
} catch (AmazonClientException | InterruptedException e) {
LOGGER.log(Level.FINE, "Error getting EC2 instance state for " + c.getName(), e);
}
if (!(InstanceState.PENDING.equals(state) || InstanceState.RUNNING.equals(state))) {
Expand Down

0 comments on commit 9c8f3b2

Please sign in to comment.