You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ca...@apache.org on 2022/01/17 13:44:18 UTC

[dolphinscheduler] branch 2.0.3-prepare updated: Revert "[fix-7712][Docker] support docker-compose 2.X (#7980)" (#8093)

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

caishunfeng pushed a commit to branch 2.0.3-prepare
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/2.0.3-prepare by this push:
     new 5ba55cc  Revert "[fix-7712][Docker] support docker-compose 2.X (#7980)" (#8093)
5ba55cc is described below

commit 5ba55cc55d449e97f57a9d42ce915bb932c53384
Author: wind <ca...@users.noreply.github.com>
AuthorDate: Mon Jan 17 21:44:13 2022 +0800

    Revert "[fix-7712][Docker] support docker-compose 2.X (#7980)" (#8093)
    
    This reverts commit 3b30ed7f51df37f6367ad3d177e9d53b21d9cfc0.
---
 docker/docker-swarm/config.env.sh | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/docker/docker-swarm/config.env.sh b/docker/docker-swarm/config.env.sh
index de56efd..3b368f4 100755
--- a/docker/docker-swarm/config.env.sh
+++ b/docker/docker-swarm/config.env.sh
@@ -82,7 +82,7 @@ DATAX_HOME=/opt/soft/datax
 #============================================================================
 # Master Server
 #============================================================================
-MASTER_SERVER_OPTS="-Xms1g -Xmx1g -Xmn512m"
+MASTER_SERVER_OPTS=-Xms1g -Xmx1g -Xmn512m
 MASTER_EXEC_THREADS=100
 MASTER_EXEC_TASK_NUM=20
 MASTER_DISPATCH_TASK_NUM=3
@@ -99,7 +99,7 @@ MASTER_PERSIST_EVENT_STATE_THREADS=10
 #============================================================================
 # Worker Server
 #============================================================================
-WORKER_SERVER_OPTS="-Xms1g -Xmx1g -Xmn512m"
+WORKER_SERVER_OPTS=-Xms1g -Xmx1g -Xmn512m
 WORKER_EXEC_THREADS=100
 WORKER_HEARTBEAT_INTERVAL=10
 WORKER_HOST_WEIGHT=100
@@ -112,14 +112,14 @@ ALERT_LISTEN_HOST=dolphinscheduler-alert
 #============================================================================
 # Alert Server
 #============================================================================
-ALERT_SERVER_OPTS="-Xms512m -Xmx512m -Xmn256m"
+ALERT_SERVER_OPTS=-Xms512m -Xmx512m -Xmn256m
 
 #============================================================================
 # Api Server
 #============================================================================
-API_SERVER_OPTS="-Xms512m -Xmx512m -Xmn256m"
+API_SERVER_OPTS=-Xms512m -Xmx512m -Xmn256m
 
 #============================================================================
 # Logger Server
 #============================================================================
-LOGGER_SERVER_OPTS="-Xms512m -Xmx512m -Xmn256m"
+LOGGER_SERVER_OPTS=-Xms512m -Xmx512m -Xmn256m