mirror of https://github.com/apache/lucene.git
SOLR-12727: Upgrade ZooKeeper dependency to 3.4.13
This commit is contained in:
parent
df84a3c981
commit
f690302e05
|
@ -206,7 +206,7 @@ org.apache.tika.version = 1.19.1
|
|||
/org.apache.velocity/velocity = 1.7
|
||||
/org.apache.velocity/velocity-tools = 2.0
|
||||
/org.apache.xmlbeans/xmlbeans = 3.0.1
|
||||
/org.apache.zookeeper/zookeeper = 3.4.11
|
||||
/org.apache.zookeeper/zookeeper = 3.4.13
|
||||
|
||||
# v1.6.0-alpha.5 of asciidoctor-ant includes asciidoctorj-pdf 1.5.0-alpha.16,
|
||||
# which is the same as asciidoctor-pdf 1.5.0-alpha.16
|
||||
|
|
|
@ -85,8 +85,8 @@ grant {
|
|||
permission javax.security.auth.PrivateCredentialPermission "sun.security.jgss.krb5.Krb5Util$KeysFromKeyTab * \"*\"", "read";
|
||||
|
||||
permission javax.security.auth.kerberos.ServicePermission "krbtgt/EXAMPLE.COM@EXAMPLE.COM", "initiate";
|
||||
permission javax.security.auth.kerberos.ServicePermission "zookeeper/127.0.0.1@EXAMPLE.COM", "initiate";
|
||||
permission javax.security.auth.kerberos.ServicePermission "zookeeper/127.0.0.1@EXAMPLE.COM", "accept";
|
||||
permission javax.security.auth.kerberos.ServicePermission "zookeeper/localhost@EXAMPLE.COM", "initiate";
|
||||
permission javax.security.auth.kerberos.ServicePermission "zookeeper/localhost@EXAMPLE.COM", "accept";
|
||||
permission javax.security.auth.kerberos.ServicePermission "HTTP/127.0.0.1@EXAMPLE.COM", "initiate";
|
||||
permission javax.security.auth.kerberos.ServicePermission "HTTP/127.0.0.1@EXAMPLE.COM", "accept";
|
||||
permission javax.security.auth.kerberos.DelegationPermission "\"HTTP/127.0.0.1@EXAMPLE.COM\" \"krbtgt/EXAMPLE.COM@EXAMPLE.COM\"";
|
||||
|
|
|
@ -178,6 +178,7 @@ Other Changes
|
|||
|
||||
* SOLR-13036: Fix retry logic in JettySolrRunner (Gus Heck)
|
||||
|
||||
* SOLR-12727: Upgrade ZooKeeper dependency to 3.4.13 (Kevin Risden, Erick Erickson)
|
||||
|
||||
================== 7.6.0 ==================
|
||||
|
||||
|
|
|
@ -196,7 +196,7 @@ public class SaslZkACLProviderTest extends SolrTestCaseJ4 {
|
|||
System.setProperty("zookeeper.kerberos.removeHostFromPrincipal", "true");
|
||||
File keytabFile = new File(kdcDir, "keytabs");
|
||||
String zkClientPrincipal = "solr";
|
||||
String zkServerPrincipal = "zookeeper/127.0.0.1";
|
||||
String zkServerPrincipal = "zookeeper/localhost";
|
||||
|
||||
kerberosTestServices = KerberosTestServices.builder()
|
||||
.withKdc(new File(kdcDir))
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
dc767a0b76db57b9ed442ff80418f3c078f670b7
|
|
@ -0,0 +1 @@
|
|||
31e9937541cef95c4585b547eb2dbd34d3a76f1c
|
|
@ -454,7 +454,7 @@ public class ZkTestServer {
|
|||
}
|
||||
|
||||
public String getZkHost() {
|
||||
return "127.0.0.1:" + zkServer.getLocalPort();
|
||||
return "localhost:" + zkServer.getLocalPort();
|
||||
}
|
||||
|
||||
public String getZkAddress() {
|
||||
|
@ -469,7 +469,7 @@ public class ZkTestServer {
|
|||
public String getZkAddress(String chroot) {
|
||||
if (!chroot.startsWith("/"))
|
||||
chroot = "/" + chroot;
|
||||
return "127.0.0.1:" + zkServer.getLocalPort() + chroot;
|
||||
return "localhost:" + zkServer.getLocalPort() + chroot;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue