You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
createCmd.Flags().StringP(flag.ClusterID, flag.ClusterIDShort, "", "The ID of the cluster.")
290
290
createCmd.Flags().StringP(flag.DisplayName, flag.DisplayNameShort, "", "The name of the changefeed.")
291
291
createCmd.Flags().String(flag.ChangefeedType, "", fmt.Sprintf("The type of the changefeed, one of %q", cdc.AllowedChangefeedTypeEnumEnumValues))
292
-
createCmd.Flags().String(flag.ChangefeedKafka, "", "Kafka information in JSON format, use `ticloud serverless changefeed template` to see templates.")
293
-
createCmd.Flags().String(flag.ChangefeedMySQL, "", "MySQL information in JSON format, use `ticloud serverless changefeed template` to see templates.")
294
-
createCmd.Flags().String(flag.ChangefeedFilter, "", "Filter in JSON format, use `ticloud serverless changefeed template` to see templates.")
292
+
createCmd.Flags().String(flag.ChangefeedKafka, "", "Kafka information in JSON format, use \"ticloud serverless changefeed template\" to see templates.")
293
+
createCmd.Flags().String(flag.ChangefeedMySQL, "", "MySQL information in JSON format, use \"ticloud serverless changefeed template\" to see templates.")
294
+
createCmd.Flags().String(flag.ChangefeedFilter, "", "Filter in JSON format, use \"ticloud serverless changefeed template\" to see templates.")
295
295
createCmd.Flags().Uint64(flag.ChangefeedStartTSO, 0, "Start TSO for the changefeed, default to current TSO. See https://docs.pingcap.com/tidb/stable/tso/ for more information about TSO.")
296
296
createCmd.Flags().String(flag.ChangefeedStartTime, "", "Start Time for the changefeed (RFC3339 format, e.g., 2024-01-01T00:00:00Z). If both start-tso and start-time are provided, start-tso will be used.")
flag.DisplayName: "The name of the changefeed, skip to use the default name",
52
+
flag.DisplayName: "The name of the changefeed, skip to use the default name.",
53
53
flag.ChangefeedKafka: "Kafka information in JSON format, use \"ticloud serverless changefeed template\" to see templates.",
54
54
flag.ChangefeedFilter: "Filter in JSON format, use \"ticloud serverless changefeed template\" to see templates.",
55
55
flag.ChangefeedStartTSO: "Start TSO (uint64) for the changefeed, skip to use the current TSO. See https://docs.pingcap.com/tidb/stable/tso/ for more information about TSO.",
@@ -58,7 +58,7 @@ var createKafkaInputDescription = map[string]string{
58
58
59
59
varcreateMySQLInputDescription=map[string]string{
60
60
flag.DisplayName: "The name of the changefeed, skip to use the default name",
61
-
flag.ChangefeedMySQL: "mysql information in JSON format, use \"ticloud serverless changefeed template\" to see templates.",
61
+
flag.ChangefeedMySQL: "MySQL information in JSON format, use \"ticloud serverless changefeed template\" to see templates.",
62
62
flag.ChangefeedFilter: "Filter in JSON format, use \"ticloud serverless changefeed template\" to see templates.",
63
63
flag.ChangefeedStartTSO: "Start TSO (uint64) for the changefeed, skip to use the current TSO. See https://docs.pingcap.com/tidb/stable/tso/ for more information about TSO.",
64
64
flag.ChangefeedStartTime: "Start Time (RFC3339 format, e.g., 2024-01-01T00:00:00Z) for the changefeed, if both start-tso and start-time are provided, start-tso will be used.",
0 commit comments