This is an automated email from the ASF dual-hosted git repository.
nkalmar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zookeeper.git
The following commit(s) were added to refs/heads/master by this push:
new 78b3d1a ZOOKEEPER-3404: Downgrade BouncyCastle to 1.60
78b3d1a is described below
commit 78b3d1a8c1ea8453423682ad09675dfb1df04384
Author: Andor Molnar <andor@apache.org>
AuthorDate: Tue May 28 16:04:34 2019 +0200
ZOOKEEPER-3404: Downgrade BouncyCastle to 1.60
I've seen a lot of test timeout errors with QuorumSSL tests since I upgraded master to
BouncyCastle 1.61 due to a Java 9 warning. The warning has been reported by Enrico Olivelli
which we tried to solve by the upgrade, but the warning message is still present so I don't
see any harm in downgrading to the previous version.
https://issues.apache.org/jira/browse/ZOOKEEPER-3404
Author: Andor Molnar <andor@apache.org>
Reviewers: Enrico Olivelli <eolivelli@apache.org>, Norbert Kalmar <nkalmar@apache.org>
Closes #961 from anmolnar/ZOOKEEPER-3404
---
build.xml | 2 +-
pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.xml b/build.xml
index 2f421e0..3ba2079 100644
--- a/build.xml
+++ b/build.xml
@@ -44,7 +44,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
<property name="checkstyle.version" value="7.1.2"/>
<property name="commons-collections.version" value="3.2.2"/>
- <property name="bouncycastle.version" value="1.61"/>
+ <property name="bouncycastle.version" value="1.60"/>
<property name="jdiff.version" value="1.0.9"/>
<property name="xerces.version" value="1.4.4"/>
diff --git a/pom.xml b/pom.xml
index 51ff7b4..dbd7d81 100755
--- a/pom.xml
+++ b/pom.xml
@@ -284,7 +284,7 @@
<jline.version>2.11</jline.version>
<snappy.version>1.1.7</snappy.version>
<kerby.version>1.1.0</kerby.version>
- <bouncycastle.version>1.61</bouncycastle.version>
+ <bouncycastle.version>1.60</bouncycastle.version>
<commons-collections.version>3.2.2</commons-collections.version>
<commons-lang.version>2.6</commons-lang.version>
<dropwizard.version>3.2.5</dropwizard.version>
|