-
Notifications
You must be signed in to change notification settings - Fork 3.4k
HBASE-22716:upgrade zookeeper version to 3.5.5 #394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,6 +26,7 @@ | |
| import org.apache.yetus.audience.InterfaceAudience; | ||
| import org.apache.zookeeper.KeeperException; | ||
| import org.apache.zookeeper.ZooKeeperMain; | ||
| import org.apache.zookeeper.cli.CliException; | ||
|
|
||
|
|
||
| /** | ||
|
|
@@ -61,7 +62,7 @@ public HACK_UNTIL_ZOOKEEPER_1897_ZooKeeperMain(String[] args) | |
| * @throws IOException in case of a network failure | ||
| * @throws InterruptedException if the ZooKeeper client closes | ||
| */ | ||
| void runCmdLine() throws KeeperException, IOException, InterruptedException { | ||
| void runCmdLine() throws CliException, IOException, InterruptedException { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please also remove the KeeperException from the Javadoc |
||
| processCmd(this.cl); | ||
| System.exit(0); | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1471,7 +1471,7 @@ | |
| <protobuf.plugin.version>0.5.0</protobuf.plugin.version> | ||
| <thrift.path>thrift</thrift.path> | ||
| <thrift.version>0.12.0</thrift.version> | ||
| <zookeeper.version>3.4.10</zookeeper.version> | ||
| <zookeeper.version>3.5.5</zookeeper.version> | ||
| <!-- What ZooKeeper 3.4.x depends on and nothing more --> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this comment was also added by https://issues.apache.org/jira/browse/HBASE-20108 |
||
| <jline.version>0.9.94</jline.version> | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we also update the jline version? I think it was added because of zookeeper, see https://issues.apache.org/jira/browse/HBASE-20108 zookeeper 3.5.5 is using jline 2.11 however, if we increment the JLine version, then the assembly:single maven target will fail, as the license part in JLine pom changed a bit (they named it 'The BSD License' instead of 'BSD License'). To make it work, we need to add a new supplement to |
||
| <slf4j.version>1.7.25</slf4j.version> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please also remove the import for KeeperException