This is an automated email from the ASF dual-hosted git repository. snlee pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new 4da1dae Fix pulsar connector issue with `NoSuchMethodError` (#7247) 4da1dae is described below commit 4da1dae06aef50f0a7c96b5a22019e541310fdd9 Author: Seunghyun Lee <sn...@linkedin.com> AuthorDate: Wed Aug 4 02:22:16 2021 -0700 Fix pulsar connector issue with `NoSuchMethodError` (#7247) Pulsar is using more recent version of `apache-codec` while Pinot code base pins it to very old version. This causes the conflict where pulsar side code invokes the API that's not available in the jar file that we include as part of Pinot jar. This fixes the issue. --- LICENSE-binary | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE-binary b/LICENSE-binary index e2e197c..a9ad999 100644 --- a/LICENSE-binary +++ b/LICENSE-binary @@ -252,7 +252,7 @@ com.yahoo.datasketches:sketches-core:0.8.3 com.yammer.metrics:metrics-core:2.2.0 com.zaxxer:HikariCP-java7:2.4.13 commons-cli:commons-cli:1.2 -commons-codec:commons-codec:1.6 +commons-codec:commons-codec:1.15 commons-collections:commons-collections:3.2.1 commons-configuration:commons-configuration:1.10 commons-httpclient:commons-httpclient:3.1 diff --git a/pom.xml b/pom.xml index f4af238..f882c90 100644 --- a/pom.xml +++ b/pom.xml @@ -695,7 +695,7 @@ <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> - <version>1.6</version> + <version>1.15</version> </dependency> <dependency> <groupId>com.thoughtworks.paranamer</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org