Use default localstack ports
According to https://github.com/localstack/localstack , Dynamodb listens at 4569 by default, and Kinesis listens at 4568 by default.
This commit is contained in:
committed by
Artem Bilan
parent
8dfbd606b5
commit
8d64f13092
@@ -34,7 +34,7 @@ import org.springframework.cloud.stream.test.junit.AbstractExternalResourceTestS
|
||||
*/
|
||||
public final class LocalDynamoDbResource extends AbstractExternalResourceTestSupport<AmazonDynamoDBAsync> {
|
||||
|
||||
public static final int DEFAULT_PORT = 4568;
|
||||
public static final int DEFAULT_PORT = 4569;
|
||||
|
||||
private final int port;
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ import org.springframework.cloud.stream.test.junit.AbstractExternalResourceTestS
|
||||
*/
|
||||
public class LocalKinesisResource extends AbstractExternalResourceTestSupport<AmazonKinesisAsync> {
|
||||
|
||||
public static final int DEFAULT_PORT = 4567;
|
||||
public static final int DEFAULT_PORT = 4568;
|
||||
|
||||
private final int port;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user