Skip to content

Commit

Permalink
[kinesis] Fix netty dependency conflict in Kinesis (apache#6199)
Browse files Browse the repository at this point in the history
### Motivation

The KCL was depending on a version of the aws-sdk-v2 that was relying on
unstable Netty APIs (see
aws/aws-sdk-java-v2#1344). Pulsar had taken a
netty update which was conflicting with their bundled netty and was
leading to an exception in calling an invalid function.

This newer version of the KCL takes a newer version of aws-sdk-v2 which
should depend on stable APIs

### Modifications

Bump some versions
  • Loading branch information
addisonj authored Feb 10, 2020
1 parent 8262ad9 commit 05c3218
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pulsar-io/kinesis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@
<dependency>
<groupId>software.amazon.kinesis</groupId>
<artifactId>amazon-kinesis-client</artifactId>
<version>2.2.3</version>
<version>2.2.8</version>
</dependency>

<dependency>
<groupId>com.amazonaws</groupId>
<artifactId>amazon-kinesis-producer</artifactId>
<version>0.13.1</version>
<version>0.14.0</version>
</dependency>

<dependency>
Expand All @@ -99,7 +99,7 @@
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>sts</artifactId>
<version>2.8.5</version>
<version>2.10.56</version>
</dependency>
<!-- /kinesis dependencies -->

Expand Down

0 comments on commit 05c3218

Please sign in to comment.