You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by lz...@apache.org on 2022/12/09 08:41:27 UTC

[flink-table-store] branch master updated: [hotfix] Fix default startup mode misspelling

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0467cd4a [hotfix] Fix default startup mode misspelling
0467cd4a is described below

commit 0467cd4aa61f5a3e1684b663ace9f2b879a7fb37
Author: JingsongLi <lz...@aliyun.com>
AuthorDate: Fri Dec 9 16:41:15 2022 +0800

    [hotfix] Fix default startup mode misspelling
---
 .../src/main/java/org/apache/flink/table/store/CoreOptions.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
index 744e7dee..c6609070 100644
--- a/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
+++ b/flink-table-store-core/src/main/java/org/apache/flink/table/store/CoreOptions.java
@@ -593,7 +593,7 @@ public class CoreOptions implements Serializable {
     /** Specifies the startup mode for log consumer. */
     public enum StartupMode implements DescribedEnum {
         DEFAULT(
-                "deafult",
+                "default",
                 "Determines actual startup mode according to other table properties. "
                         + "If \"scan.timestamp-millis\" is set the actual startup mode will be \"from-timestamp\". "
                         + "Otherwise the actual startup mode will be \"full\"."),