You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2021/01/04 04:42:22 UTC

[shardingsphere] branch master updated: Rename it.mode from proxy to docker (#8871)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1c141c5  Rename it.mode from proxy to docker (#8871)
1c141c5 is described below

commit 1c141c53756ae39fc32336f43c5f630a35e20b6a
Author: Liang Zhang <te...@163.com>
AuthorDate: Mon Jan 4 12:41:56 2021 +0800

    Rename it.mode from proxy to docker (#8871)
---
 .../shardingsphere-integration-test/shardingsphere-test-suite/pom.xml   | 2 +-
 .../test/integration/env/IntegrateTestEnvironmentType.java              | 2 +-
 .../resources/integrate/{env-proxy.properties => env-docker.properties} | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/pom.xml b/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/pom.xml
index 4e0479b..43c6a62 100644
--- a/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/pom.xml
+++ b/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/pom.xml
@@ -83,7 +83,7 @@
         <profile>
             <id>it.docker</id>
             <properties>
-                <it.mode>proxy</it.mode>
+                <it.mode>docker</it.mode>
             </properties>
             <build>
                 <plugins>
diff --git a/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/java/org/apache/shardingsphere/test/integration/env/IntegrateTestEnvironmentType.java b/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/java/org/apache/shardingsphere/test/integration/env/IntegrateTestEnvironmentType.java
index 584f8dc..a3e2c8d 100644
--- a/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/java/org/apache/shardingsphere/test/integration/env/IntegrateTestEnvironmentType.java
+++ b/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/java/org/apache/shardingsphere/test/integration/env/IntegrateTestEnvironmentType.java
@@ -30,7 +30,7 @@ public enum IntegrateTestEnvironmentType {
     
     NATIVE("native", "integrate/env-native.properties"),
     
-    PROXY("proxy", "integrate/env-proxy.properties");
+    DOCKER("docker", "integrate/env-docker.properties");
     
     private final String profileName;
     
diff --git a/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/resources/integrate/env-proxy.properties b/shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/resources/integrate/env-docker.properties
similarity index 100%
rename from shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/resources/integrate/env-proxy.properties
rename to shardingsphere-test/shardingsphere-integration-test/shardingsphere-test-suite/src/test/resources/integrate/env-docker.properties