You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by sp...@apache.org on 2021/05/15 15:54:36 UTC

[apisix] branch master updated: ci: remove redirect error when create nacos docker network, to see what happend (#4247)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0dc54a4  ci: remove redirect error when create nacos docker network, to see what happend (#4247)
0dc54a4 is described below

commit 0dc54a4e0adcce168330c43367f789f5e7732e29
Author: Shuyang Wu <wo...@gmail.com>
AuthorDate: Sat May 15 11:54:25 2021 -0400

    ci: remove redirect error when create nacos docker network, to see what happend (#4247)
    
    Signed-off-by: yiyiyimu <wo...@gmail.com>
---
 ci/install-ext-services-via-docker.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci/install-ext-services-via-docker.sh b/ci/install-ext-services-via-docker.sh
index bd0a2bf..87d417a 100755
--- a/ci/install-ext-services-via-docker.sh
+++ b/ci/install-ext-services-via-docker.sh
@@ -36,8 +36,8 @@ docker run --rm --name consul_1 -d -p 8500:8500 consul:1.7 consul agent -server
 docker run --rm --name consul_2 -d -p 8600:8500 consul:1.7 consul agent -server -bootstrap-expect=1 -client 0.0.0.0 -log-level info -data-dir=/consul/data
 
 # start nacos server
-nohup docker network rm nacos_net > /dev/null 2>&1 &
-nohup docker network create nacos_net > /dev/null 2>&1 &
+docker network rm nacos_net
+docker network create nacos_net
 # nacos no auth server - for test no auth
 docker run --rm -d --name nacos_no_auth --network nacos_net --hostname nacos2 --env NACOS_SERVERS="nacos1:8848 nacos2:8848" --env PREFER_HOST_MODE=hostname --env MODE=cluster --env EMBEDDED_STORAGE=embedded  --env JVM_XMS=512m --env JVM_XMX=512m --env JVM_XMN=256m -p8858:8848 nacos/nacos-server:1.4.1
 # nacos auth server - for test auth