Skip to content

Commit f3407d2

Browse files
fix all issues
1 parent 8cdacc4 commit f3407d2

2 files changed

Lines changed: 7 additions & 12 deletions

File tree

aws-lambda-project/pom.xml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
<groupId>software.amazon.awssdk</groupId>
6161
<artifactId>lambda</artifactId>
6262
</dependency>
63+
<dependency>
64+
<groupId>commons-io</groupId>
65+
<artifactId>commons-io</artifactId>
66+
<version>${commons-io.version}</version>
67+
</dependency>
6368

6469
<dependency>
6570
<groupId>org.springframework.boot</groupId>
@@ -119,23 +124,13 @@
119124
<dependency>
120125
<groupId>io.rest-assured</groupId>
121126
<artifactId>rest-assured</artifactId>
127+
<version>6.0.0</version>
122128
<scope>test</scope>
123129
</dependency>
124-
<dependency>
125-
<groupId>commons-io</groupId>
126-
<artifactId>commons-io</artifactId>
127-
<scope>test</scope>
128-
<version>${commons-io.version}</version>
129-
</dependency>
130130
</dependencies>
131131

132132
<dependencyManagement>
133133
<dependencies>
134-
<dependency>
135-
<groupId>io.rest-assured</groupId>
136-
<artifactId>rest-assured</artifactId>
137-
<version>6.0.0</version>
138-
</dependency>
139134
<dependency>
140135
<groupId>org.springframework.cloud</groupId>
141136
<artifactId>spring-cloud-dependencies</artifactId>

aws-lambda-project/src/test/java/com/learning/awslambda/ApplicationIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class ApplicationIntegrationTest {
7272
.withNetwork(network)
7373
.withEnv("LOCALSTACK_HOST", "localhost.localstack.cloud")
7474
.withEnv("LAMBDA_DOCKER_NETWORK", ((Network.NetworkImpl) network).getName())
75-
.withEnv("LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT", "30")
75+
.withEnv("LAMBDA_RUNTIME_ENVIRONMENT_TIMEOUT", "60")
7676
.withEnv("LAMBDA_REMOVE_CONTAINERS", "false")
7777
.withEnv("LAMBDA_TRUNCATE_STDOUT", "2000")
7878
.withNetworkAliases("localstack")

0 commit comments

Comments
 (0)