This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new 05ee935e38 [INLONG-12100][Manager][SDK][Common] Fix 'separated'
incorrect spelling in multiple files (#12101)
05ee935e38 is described below
commit 05ee935e383ecdf799a8453adba6240f39fbe35f
Author: flowers-59f <[email protected]>
AuthorDate: Mon Mar 16 16:55:34 2026 +0800
[INLONG-12100][Manager][SDK][Common] Fix 'separated' incorrect spelling in
multiple files (#12101)
---
.../main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java | 2 +-
.../apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java | 4 ++--
.../apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java | 4 ++--
.../inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java | 4 ++--
.../manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java | 4 ++--
inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md | 2 +-
inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md | 2 +-
7 files changed, 11 insertions(+), 11 deletions(-)
diff --git
a/inlong-common/src/main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java
b/inlong-common/src/main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java
index 07ef09a402..2f5ffc4147 100644
---
a/inlong-common/src/main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java
+++
b/inlong-common/src/main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java
@@ -90,7 +90,7 @@ public class HeartbeatMsg {
private String nodeGroup;
/**
- * Ext tag of cluster, key=value pairs seperated by &
+ * Ext tag of cluster, key=value pairs separated by &
*/
private String extTag;
diff --git
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java
index 1b6eb36cac..c9e6146453 100644
---
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java
+++
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java
@@ -63,10 +63,10 @@ public class MySQLBinlogSource extends StreamSource {
@ApiModelProperty("Whether include schema, default is 'false'")
private String includeSchema;
- @ApiModelProperty(value = "List of DBs to be collected, seperated by ',',
supporting regular expressions")
+ @ApiModelProperty(value = "List of DBs to be collected, separated by ',',
supporting regular expressions")
private String databaseWhiteList;
- @ApiModelProperty(value = "List of tables to be collected, seperated by
',',supporting regular expressions")
+ @ApiModelProperty(value = "List of tables to be collected, separated by
',',supporting regular expressions")
private String tableWhiteList;
@ApiModelProperty("Database time zone, Default is UTC")
diff --git
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java
index 4b9a64f780..cb7ef4d951 100644
---
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java
+++
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java
@@ -62,11 +62,11 @@ public class MySQLBinlogSourceDTO {
private String includeSchema;
@ApiModelProperty(value = "List of DBs to be collected, supporting regular
expressions, "
- + "seperated by ',', for example: db1,test_db*", notes = "DBs not
in this list are excluded. If not set, all DBs are monitored")
+ + "separated by ',', for example: db1,test_db*", notes = "DBs not
in this list are excluded. If not set, all DBs are monitored")
private String databaseWhiteList;
@ApiModelProperty(value = "List of tables to be collected, supporting
regular expressions, "
- + "seperated by ',', for example: tb1,user*", notes = "Tables not
in this list are excluded. By default, all tables are monitored")
+ + "separated by ',', for example: tb1,user*", notes = "Tables not
in this list are excluded. By default, all tables are monitored")
private String tableWhiteList;
@ApiModelProperty("Database time zone, Default is UTC")
diff --git
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java
index 585a5ba1f2..e5a974dfcd 100644
---
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java
+++
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java
@@ -63,10 +63,10 @@ public class OceanBaseBinlogSource extends StreamSource {
@ApiModelProperty("Whether include schema, default is 'false'")
private String includeSchema;
- @ApiModelProperty(value = "List of DBs to be collected, seperated by ',',
supporting regular expressions")
+ @ApiModelProperty(value = "List of DBs to be collected, separated by ',',
supporting regular expressions")
private String databaseWhiteList;
- @ApiModelProperty(value = "List of tables to be collected, seperated by
',',supporting regular expressions")
+ @ApiModelProperty(value = "List of tables to be collected, separated by
',',supporting regular expressions")
private String tableWhiteList;
@ApiModelProperty("Database time zone, Default is UTC")
diff --git
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java
index 7db34fd144..bc9cf4cbf2 100644
---
a/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java
+++
b/inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java
@@ -62,11 +62,11 @@ public class OceanBaseBinlogSourceDTO {
private String includeSchema;
@ApiModelProperty(value = "List of DBs to be collected, supporting regular
expressions, "
- + "seperated by ',', for example: db1,test_db*", notes = "DBs not
in this list are excluded. If not set, all DBs are monitored")
+ + "separated by ',', for example: db1,test_db*", notes = "DBs not
in this list are excluded. If not set, all DBs are monitored")
private String databaseWhiteList;
@ApiModelProperty(value = "List of tables to be collected, supporting
regular expressions, "
- + "seperated by ',', for example: tb1,user*", notes = "Tables not
in this list are excluded. By default, all tables are monitored")
+ + "separated by ',', for example: tb1,user*", notes = "Tables not
in this list are excluded. By default, all tables are monitored")
private String tableWhiteList;
@ApiModelProperty("Database time zone, Default is UTC")
diff --git a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md
b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md
index 3fe02b53c9..f8cd6566c0 100644
--- a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md
+++ b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md
@@ -58,7 +58,7 @@ Refer to `release/conf/config_example.json`.
| name | default value
| description
|
|:-------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|
| thread_num | 10
| number of network sending threads
|
-| inlong_group_ids | ""
| the list of inlong_group_id, seperated by commas, such as
"b_inlong_group_test_01, b_inlong_group_test_02" |
+| inlong_group_ids | ""
| the list of inlong_group_id, separated by commas, such as
"b_inlong_group_test_01, b_inlong_group_test_02" |
| enable_groupId_isolation | false
| whether different groupid data using different buffer pools
inside the sdk |
| buffer_num_per_groupId | 5
| number of buffer pools of each groupid
|
| enable_pack | true
| whether multiple messages are packed while sending to
dataproxy |
diff --git a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md
b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md
index 3a6043e88c..722f3b96ef 100644
--- a/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md
+++ b/inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md
@@ -110,7 +110,7 @@ Refer to `demo/config_example.json`.
| name | default value
| description
|
|:-------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|
| thread_num | 10
| number of network sending threads
|
-| inlong_group_ids | ""
| the list of inlong_group_id, seperated by commas, such as
"b_inlong_group_test_01, b_inlong_group_test_02" |
+| inlong_group_ids | ""
| the list of inlong_group_id, separated by commas, such as
"b_inlong_group_test_01, b_inlong_group_test_02" |
| enable_groupId_isolation | false
| whether different groupid data using different buffer pools
inside the sdk |
| buffer_num_per_groupId | 5
| number of buffer pools of each groupid
|
| enable_pack | true
| whether multiple messages are packed while sending to
dataproxy |