This is an automated email from the ASF dual-hosted git repository. tzulitai pushed a commit to branch release-2.2 in repository https://gitbox.apache.org/repos/asf/flink-statefun.git
commit 4b563081c1fa01e777f08ce30b615ea4795f48a0 Author: winder <[email protected]> AuthorDate: Sat Dec 19 15:54:13 2020 +0800 [hotfix] fix typos in StatefulFunctionModule.java. This closes #188. --- .../java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java b/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java index b47e224..dbbad21 100644 --- a/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java +++ b/statefun-sdk/src/main/java/org/apache/flink/statefun/sdk/spi/StatefulFunctionModule.java @@ -47,7 +47,7 @@ import org.apache.flink.statefun.sdk.io.Router; * * <p>In order for an application to discover a given module, likewise to how the Java Service * Loader works, a UTF-8 encoded provider configuration file needs to be stored in the {@code - * MEGA-INF/services} directory of the module's containing JAR file. The name of the file should be + * META-INF/services} directory of the module's containing JAR file. The name of the file should be * {@code org.apache.flink.statefun.sdk.spi.StatefulFunctionModule}, i.e. the fully qualified name * of the {@link StatefulFunctionModule} class. Each line in the file should be the fully qualified * class name of a module in that JAR that you want to register for the Stateful Functions
