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 f9fcd145333c7c506dd1cb722f2a3d75ea06fbec 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 d5b6b71..b7943f8 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 @@ -48,7 +48,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
