Pin localstack to versiosn 1.4, which seems to NOT be borken.

This commit is contained in:
2023-03-27 14:42:52 -05:00
parent e9c66b48f2
commit 6629015fbf

View File

@ -39,7 +39,7 @@ import org.junit.jupiter.api.extension.ExtendWith;
** Base class for tests that want to be able to work with localstack s3. ** Base class for tests that want to be able to work with localstack s3.
*******************************************************************************/ *******************************************************************************/
@ExtendWith(LocalstackDockerExtension.class) @ExtendWith(LocalstackDockerExtension.class)
@LocalstackDockerProperties(useSingleDockerContainer = true, services = { ServiceName.S3 }, portEdge = "2960", portElasticSearch = "2961") @LocalstackDockerProperties(useSingleDockerContainer = true, services = { ServiceName.S3 }, portEdge = "2960", portElasticSearch = "2961", imageTag = "1.4")
public class BaseS3Test extends BaseTest public class BaseS3Test extends BaseTest
{ {
public static final String BUCKET_NAME = "localstack-test-bucket"; public static final String BUCKET_NAME = "localstack-test-bucket";