CrynetLogistics commented on a change in pull request #17345:
URL: https://github.com/apache/flink/pull/17345#discussion_r748110992
##########
File path:
flink-connectors/flink-connector-aws-kinesis-data-streams/src/test/java/org/apache/flink/streaming/connectors/kinesis/testutils/KinesaliteContainer.java
##########
@@ -45,23 +56,18 @@
public class KinesaliteContainer extends GenericContainer<KinesaliteContainer>
{
private static final String ACCESS_KEY = "access key";
private static final String SECRET_KEY = "secret key";
+ private static final Region REGION = Region.US_EAST_1;
public KinesaliteContainer(DockerImageName imageName) {
super(imageName);
+ System.setProperty("com.amazonaws.sdk.disableCertChecking", "true");
Review comment:
You're right! I thought I would need to retain this for running the
tests outside maven, but works.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]