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

tzulitai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git

commit 4bb7e324e1c4134b9572cd0ed48927de8660d210
Author: Tzu-Li (Gordon) Tai <[email protected]>
AuthorDate: Wed Oct 14 11:02:34 2020 +0800

    [FLINK-19620] Rename RemoteModuleE2E to ExactlyOnceWithRemoteFnE2E
    
    This renaming is to reflect the fact that this E2E now also tests
    exactly-once semantics. The renaming is also applied to the owning
    module.
    
    This closes #163.
---
 statefun-e2e-tests/pom.xml                                            | 2 +-
 .../pom.xml                                                           | 2 +-
 .../src/main/protobuf/remote-module-verification.proto                | 0
 .../src/main/python/functions.py                                      | 0
 .../src/main/python/remote_module_verification_pb2.py                 | 0
 .../apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java} | 4 ++--
 .../src/test/resources/Dockerfile                                     | 0
 .../src/test/resources/Dockerfile.remote-function                     | 0
 .../src/test/resources/log4j.properties                               | 0
 .../src/test/resources/remote-module/module.yaml                      | 0
 .../src/test/resources/requirements.txt                               | 0
 11 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/statefun-e2e-tests/pom.xml b/statefun-e2e-tests/pom.xml
index c27d0ee..b754f0e 100644
--- a/statefun-e2e-tests/pom.xml
+++ b/statefun-e2e-tests/pom.xml
@@ -31,7 +31,7 @@ under the License.
     <modules>
         <module>statefun-e2e-tests-common</module>
         <module>statefun-sanity-e2e</module>
-        <module>statefun-remote-module-e2e</module>
+        <module>statefun-exactly-once-remote-e2e</module>
     </modules>
 
     <build>
diff --git a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
similarity index 98%
rename from statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
rename to statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
index 45c5956..f8b4dcf 100644
--- a/statefun-e2e-tests/statefun-remote-module-e2e/pom.xml
+++ b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/pom.xml
@@ -25,7 +25,7 @@ under the License.
     </parent>
     <modelVersion>4.0.0</modelVersion>
 
-    <artifactId>statefun-remote-module-e2e</artifactId>
+    <artifactId>statefun-exactly-once-remote-e2e</artifactId>
 
     <properties>
         <testcontainers.version>1.12.5</testcontainers.version>
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/protobuf/remote-module-verification.proto
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/protobuf/remote-module-verification.proto
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/main/protobuf/remote-module-verification.proto
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/protobuf/remote-module-verification.proto
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/functions.py 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/functions.py
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/functions.py
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/functions.py
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/remote_module_verification_pb2.py
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/remote_module_verification_pb2.py
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/main/python/remote_module_verification_pb2.py
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/main/python/remote_module_verification_pb2.py
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
similarity index 98%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
index 6976cb5..3e343cf 100644
--- 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/RemoteModuleE2E.java
+++ 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/java/org/apache/flink/statefun/e2e/remote/ExactlyOnceWithRemoteFnE2E.java
@@ -66,9 +66,9 @@ import org.testcontainers.images.builder.ImageFromDockerfile;
  * that on the consumer side, the invocation counts increase sequentially for 
each key as if the
  * failure did not occur.
  */
-public class RemoteModuleE2E {
+public class ExactlyOnceWithRemoteFnE2E {
 
-  private static final Logger LOG = 
LoggerFactory.getLogger(RemoteModuleE2E.class);
+  private static final Logger LOG = 
LoggerFactory.getLogger(ExactlyOnceWithRemoteFnE2E.class);
 
   private static final String CONFLUENT_PLATFORM_VERSION = "5.0.3";
 
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile.remote-function
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile.remote-function
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/Dockerfile.remote-function
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/Dockerfile.remote-function
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/log4j.properties
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/log4j.properties
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/log4j.properties
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/log4j.properties
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/remote-module/module.yaml
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/remote-module/module.yaml
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/remote-module/module.yaml
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/remote-module/module.yaml
diff --git 
a/statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/requirements.txt
 
b/statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/requirements.txt
similarity index 100%
rename from 
statefun-e2e-tests/statefun-remote-module-e2e/src/test/resources/requirements.txt
rename to 
statefun-e2e-tests/statefun-exactly-once-remote-e2e/src/test/resources/requirements.txt

Reply via email to