This is an automated email from the ASF dual-hosted git repository. snlee pushed a commit to branch release-0.8.0-rc in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/release-0.8.0-rc by this push: new 086050a Fix pulsar connector issue with `NoSuchMethodError` (#7247) 086050a is described below commit 086050a47641bd91c6e39b16053ae7426ee0e4d4 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 4bd57bd..71488bb 100644 --- a/LICENSE-binary +++ b/LICENSE-binary @@ -249,7 +249,7 @@ com.uber:h3:3.0.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.1 commons-httpclient:commons-httpclient:3.1 diff --git a/pom.xml b/pom.xml index 87446a6..a297ac2 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