Skip to content

Commit

Permalink
[FLINK-19620] Rename RemoteModuleE2E to ExactlyOnceWithRemoteFnE2E
Browse files Browse the repository at this point in the history
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 apache#163.
  • Loading branch information
tzulitai committed Oct 19, 2020
1 parent 61bcfc2 commit 4bb7e32
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion statefun-e2e-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
* 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";

Expand Down

0 comments on commit 4bb7e32

Please sign in to comment.