Skip to content

Commit a119d68

Browse files
author
Michel
committed
Set fix Localstack image version to 0.10.2 to ensure compatibility with localstack-utils library. Like localstack/localstack#1569
1 parent dfc1f18 commit a119d68

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

src/test/java/io/reactiverse/awssdk/integration/apigateway/VertxApiGatewaySpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import static org.junit.jupiter.api.Assertions.assertEquals;
4141

4242
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
43-
@LocalstackDockerProperties(services = { "apigateway" })
43+
@LocalstackDockerProperties(services = { "apigateway" }, imageTag = "0.10.2")
4444
@ExtendWith(VertxExtension.class)
4545
@ExtendWith(LocalstackDockerExtension.class)
4646
public class VertxApiGatewaySpec extends LocalStackBaseSpec {

src/test/java/io/reactiverse/awssdk/integration/cloudwatch/VertxCloudWatchClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import static org.junit.jupiter.api.Assertions.assertTrue;
2828

2929
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
30-
@LocalstackDockerProperties(services = { "cloudwatch" })
30+
@LocalstackDockerProperties(services = { "cloudwatch" }, imageTag = "0.10.2")
3131
@ExtendWith(VertxExtension.class)
3232
@ExtendWith(LocalstackDockerExtension.class)
3333
public class VertxCloudWatchClientSpec extends LocalStackBaseSpec {

src/test/java/io/reactiverse/awssdk/integration/dynamodb/VertxDynamoClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@ExtendWith(VertxExtension.class)
3838
@ExtendWith(LocalstackDockerExtension.class)
3939
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
40-
@LocalstackDockerProperties(services = { "dynamodb" })
40+
@LocalstackDockerProperties(services = { "dynamodb" }, imageTag = "0.10.2")
4141
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)
4242
public class VertxDynamoClientSpec extends LocalStackBaseSpec {
4343

src/test/java/io/reactiverse/awssdk/integration/firehose/VertxFirehoseClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
@ExtendWith(VertxExtension.class)
5353
@ExtendWith(LocalstackDockerExtension.class)
5454
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
55-
@LocalstackDockerProperties(services = { "firehose", "s3" })
55+
@LocalstackDockerProperties(services = { "firehose", "s3" }, imageTag = "0.10.2")
5656
public class VertxFirehoseClientSpec extends LocalStackBaseSpec {
5757

5858
private final static String STREAM = "My-Vertx-Firehose-Stream";

src/test/java/io/reactiverse/awssdk/integration/kinesis/VertxKinesisClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
@ExtendWith(VertxExtension.class)
4242
@ExtendWith(LocalstackDockerExtension.class)
4343
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
44-
@LocalstackDockerProperties(services = { "kinesis" })
44+
@LocalstackDockerProperties(services = { "kinesis" }, imageTag = "0.10.2")
4545
public class VertxKinesisClientSpec extends LocalStackBaseSpec {
4646

4747
private final static String STREAM = "my-awesome-stream";

src/test/java/io/reactiverse/awssdk/integration/lambda/VertxLambdaClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
import static org.junit.jupiter.api.Assertions.assertNull;
3939

4040
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
41-
@LocalstackDockerProperties(services = { "lambda" })
41+
@LocalstackDockerProperties(services = { "lambda" }, imageTag = "0.10.2")
4242
@ExtendWith(VertxExtension.class)
4343
@ExtendWith(LocalstackDockerExtension.class)
4444
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)

src/test/java/io/reactiverse/awssdk/integration/s3/VertxS3ClientSpec.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
import static org.junit.jupiter.api.Assertions.assertNotNull;
3737

3838
@EnabledIfSystemProperty(named = "tests.integration", matches = "localstack")
39-
@LocalstackDockerProperties(services = { "s3" })
39+
@LocalstackDockerProperties(services = { "s3" }, imageTag = "0.10.2")
4040
@ExtendWith(VertxExtension.class)
4141
@ExtendWith(LocalstackDockerExtension.class)
4242
@TestMethodOrder(MethodOrderer.OrderAnnotation.class)

0 commit comments

Comments
 (0)