Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinPihony committed May 4, 2020
1 parent 9d5eb93 commit 32b78ea
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ public class AWSLambdaPluginExtension extends BaseRegionAwarePluginExtension<AWS
@Getter
@Setter
private Integer clientExecutionTimeout = -1;

@Getter
@Setter
private Integer connectionTimeout = -1;

@Getter
@Setter
private Integer socketTimeout = -1;
Expand All @@ -68,11 +68,11 @@ protected ClientConfiguration buildClientConfiguration() {
if (clientExecutionTimeout > 0) {
clientConfiguration.setClientExecutionTimeout(clientExecutionTimeout);
}

if (socketTimeout > 0) {
clientConfiguration.setSocketTimeout(socketTimeout);
}

if (connectionTimeout > 0) {
clientConfiguration.setConnectionTimeout(connectionTimeout);
}
Expand Down

0 comments on commit 32b78ea

Please sign in to comment.