[ 
https://issues.apache.org/jira/browse/BEAM-601?focusedWorklogId=467243&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-467243
 ]

ASF GitHub Bot logged work on BEAM-601:
---------------------------------------

                Author: ASF GitHub Bot
            Created on: 06/Aug/20 12:00
            Start Date: 06/Aug/20 12:00
    Worklog Time Spent: 10m 
      Work Description: aromanenko-dev commented on a change in pull request 
#12422:
URL: https://github.com/apache/beam/pull/12422#discussion_r466361678



##########
File path: 
sdks/java/io/kinesis/src/main/java/org/apache/beam/sdk/io/kinesis/BasicKinesisProvider.java
##########
@@ -39,16 +40,27 @@
   private final String secretKey;
   private final Regions region;
   private final @Nullable String serviceEndpoint;
+  private final boolean verifyCertificate;
 
   BasicKinesisProvider(
-      String accessKey, String secretKey, Regions region, @Nullable String 
serviceEndpoint) {
+      String accessKey,
+      String secretKey,
+      Regions region,
+      @Nullable String serviceEndpoint,
+      boolean verifyCertificate) {
     checkArgument(accessKey != null, "accessKey can not be null");
     checkArgument(secretKey != null, "secretKey can not be null");
     checkArgument(region != null, "region can not be null");
     this.accessKey = accessKey;
     this.secretKey = secretKey;
     this.region = region;
     this.serviceEndpoint = serviceEndpoint;
+    this.verifyCertificate = verifyCertificate;
+  }
+
+  BasicKinesisProvider(

Review comment:
       I'm not sure that service endpoint is used in 
`com.amazonaws.services.kinesis.producer.KinesisProducer` which is actually 
used for `KinesisIO.Write`. Am I mistaken?




----------------------------------------------------------------
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Issue Time Tracking
-------------------

    Worklog Id:     (was: 467243)
    Time Spent: 7h  (was: 6h 50m)

> Enable Kinesis integration tests
> --------------------------------
>
>                 Key: BEAM-601
>                 URL: https://issues.apache.org/jira/browse/BEAM-601
>             Project: Beam
>          Issue Type: Improvement
>          Components: testing
>    Affects Versions: 0.3.0-incubating
>            Reporter: Przemyslaw Pastuszka
>            Assignee: Piotr Szuberski
>            Priority: P3
>              Labels: starter
>          Time Spent: 7h
>  Remaining Estimate: 0h
>
> There's an integration test for KinesisIO called KinesisReaderIT, but it is 
> currently ignored, because it needs real Kinesis instance setup.
> As part of this task please:
> * setup real Kinesis environment on AWS for testing purposes
> * enable KinesisReaderIT test
> * setup jenkins, so that it passes all KinesisTestOptions when running 
> integration tests
> This is a follow up to BEAM-461 requested by [[email protected]] in 
> https://github.com/apache/incubator-beam/pull/687/



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to