You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2020/11/25 10:05:16 UTC

[openmeetings] branch master updated: no jira: no-cluster config is fixed

This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/master by this push:
     new 96dd92a  no jira: no-cluster config is fixed
96dd92a is described below

commit 96dd92ab30ff0d7c641517256b9210d0e32ff3fc
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Wed Nov 25 17:05:00 2020 +0700

    no jira: no-cluster config is fixed
---
 openmeetings-server/src/site/xdoc/Clustering.xml               | 5 ++++-
 openmeetings-web/src/main/webapp/WEB-INF/classes/hazelcast.xml | 3 ++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/openmeetings-server/src/site/xdoc/Clustering.xml b/openmeetings-server/src/site/xdoc/Clustering.xml
index 604fdb4..a914f9c 100644
--- a/openmeetings-server/src/site/xdoc/Clustering.xml
+++ b/openmeetings-server/src/site/xdoc/Clustering.xml
@@ -117,7 +117,7 @@
 							<li>Set <tt>instance-name</tt> for each server to unique value</li>
 							<li>Set <tt>server.url</tt> for each server to full <strong>public</strong> URL of this server (please NOTE using of numeric IP address might broke HTTPS))</li>
 							<li>
-								Comment out/delete following block:
+								Comment out/delete following blocks:
 								<source><![CDATA[
 <network>
 	<join>
@@ -127,6 +127,9 @@
 	</join>
 </network>
 								]]></source>
+								<source><![CDATA[
+<property name="hazelcast.discovery.enabled">false</property>
+								]]></source>
 							</li>
 							<li>
 								Un-comment following block (ensure it contains valip parameters):
diff --git a/openmeetings-web/src/main/webapp/WEB-INF/classes/hazelcast.xml b/openmeetings-web/src/main/webapp/WEB-INF/classes/hazelcast.xml
index a6739ec..517b841 100644
--- a/openmeetings-web/src/main/webapp/WEB-INF/classes/hazelcast.xml
+++ b/openmeetings-web/src/main/webapp/WEB-INF/classes/hazelcast.xml
@@ -21,7 +21,7 @@
 <hazelcast
 		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 		xmlns="http://www.hazelcast.com/schema/config"
-		xsi:schemaLocation="http://www.hazelcast.com/schema/config http://www.hazelcast.com/schema/config/hazelcast-config-4.0.xsd"
+		xsi:schemaLocation="http://www.hazelcast.com/schema/config http://www.hazelcast.com/schema/config/hazelcast-config-4.1.xsd"
 	>
 	<map name="ONLINE_USERS_KEY">
 		<near-cache>
@@ -99,5 +99,6 @@
 	</network-->
 	<properties>
 		<property name="hazelcast.logging.type">slf4j</property>
+		<property name="hazelcast.discovery.enabled">false</property>
 	</properties>
 </hazelcast>