mirror of https://github.com/apache/lucene.git
SOLR-13954: Embedded ZooKeeper in Solr now does not try to load JettyAdminServer (#1059)
(cherry picked from commit 7417fa1cf3
)
This commit is contained in:
parent
0cd302d7b7
commit
912789bb93
|
@ -134,6 +134,8 @@ Bug Fixes
|
|||
|
||||
* SOLR-13805: NPE when calling /solr/admin/info/health on standalone solr (Nicholas DiPiazza, shalin)
|
||||
|
||||
* SOLR-13954: Embedded ZooKeeper in Solr now does not try to load JettyAdminServer (janhoy)
|
||||
|
||||
Other Changes
|
||||
---------------------
|
||||
|
||||
|
|
|
@ -29,3 +29,6 @@ syncLimit=5
|
|||
# Purge task interval in hours
|
||||
# Set to "0" to disable auto purge feature
|
||||
#autopurge.purgeInterval=1
|
||||
|
||||
# Disable ZK AdminServer since we do not use it
|
||||
admin.enableServer=false
|
|
@ -15,3 +15,5 @@ syncLimit=5
|
|||
# clientPort=2181
|
||||
# NOTE: Solr sets this based on zkRun / zkHost params
|
||||
|
||||
# Disable ZK AdminServer since we do not use it
|
||||
admin.enableServer=false
|
Loading…
Reference in New Issue