Repository: aurora Updated Branches: refs/heads/master 56334789c -> 620a12c0a
Avoid zk 3.4.7 to fix test hangs. The commons tests hang under CI after bumping from zk 3.4.2 to 3.4.7. Although not root-caused, this zk bug introduced in 3.4.7 seems like a match for this sort of hang: https://issues.apache.org/jira/browse/ZOOKEEPER-2347 Downgrade to 3.4.6 with a note about why 3.4.7 should be skipped. Reviewed at https://reviews.apache.org/r/41917/ Project: http://git-wip-us.apache.org/repos/asf/aurora/repo Commit: http://git-wip-us.apache.org/repos/asf/aurora/commit/620a12c0 Tree: http://git-wip-us.apache.org/repos/asf/aurora/tree/620a12c0 Diff: http://git-wip-us.apache.org/repos/asf/aurora/diff/620a12c0 Branch: refs/heads/master Commit: 620a12c0a12102cf9fbacd44222655157a9eba84 Parents: 5633478 Author: John Sirois <[email protected]> Authored: Tue Jan 5 09:52:34 2016 -0800 Committer: Bill Farner <[email protected]> Committed: Tue Jan 5 09:52:34 2016 -0800 ---------------------------------------------------------------------- NEWS | 2 +- build.gradle | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/aurora/blob/620a12c0/NEWS ---------------------------------------------------------------------- diff --git a/NEWS b/NEWS index a4775ad..eea472f 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,7 @@ `-enable_cors_for`. - `-deduplicate_snapshots` and `-deflate_snapshots`. These features are good to always enable. - `-enable_job_updates` and `-enable_job_creation` -- Upgraded the scheduler ZooKeeper client from 3.3.4 to 3.4.7. +- Upgraded the scheduler ZooKeeper client from 3.3.4 to 3.4.6. 0.11.0 ------ http://git-wip-us.apache.org/repos/asf/aurora/blob/620a12c0/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 14ebf6b..6d7af5e 100644 --- a/build.gradle +++ b/build.gradle @@ -93,7 +93,9 @@ For more details, please see https://issues.apache.org/jira/browse/AURORA-1169 ext.slf4jRev = '1.7.12' ext.stringTemplateRev = '3.2.1' ext.thriftRev = '0.9.1' - ext.zookeeperRev = '3.4.7' + // Avoiding 3.4.7 due to this deadlock bug that we appear to run into in zk tests: + // https://issues.apache.org/jira/browse/ZOOKEEPER-2347 + ext.zookeeperRev = '3.4.6' configurations { compile {
