Skip to content

Commit 05ee935

Browse files
authored
[INLONG-12100][Manager][SDK][Common] Fix 'separated' incorrect spelling in multiple files (#12101)
1 parent 5a731c9 commit 05ee935

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

inlong-common/src/main/java/org/apache/inlong/common/heartbeat/HeartbeatMsg.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public class HeartbeatMsg {
9090
private String nodeGroup;
9191

9292
/**
93-
* Ext tag of cluster, key=value pairs seperated by &
93+
* Ext tag of cluster, key=value pairs separated by &
9494
*/
9595
private String extTag;
9696

inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public class MySQLBinlogSource extends StreamSource {
6363
@ApiModelProperty("Whether include schema, default is 'false'")
6464
private String includeSchema;
6565

66-
@ApiModelProperty(value = "List of DBs to be collected, seperated by ',', supporting regular expressions")
66+
@ApiModelProperty(value = "List of DBs to be collected, separated by ',', supporting regular expressions")
6767
private String databaseWhiteList;
6868

69-
@ApiModelProperty(value = "List of tables to be collected, seperated by ',',supporting regular expressions")
69+
@ApiModelProperty(value = "List of tables to be collected, separated by ',',supporting regular expressions")
7070
private String tableWhiteList;
7171

7272
@ApiModelProperty("Database time zone, Default is UTC")

inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/mysql/MySQLBinlogSourceDTO.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ public class MySQLBinlogSourceDTO {
6262
private String includeSchema;
6363

6464
@ApiModelProperty(value = "List of DBs to be collected, supporting regular expressions, "
65-
+ "seperated by ',', for example: db1,test_db*", notes = "DBs not in this list are excluded. If not set, all DBs are monitored")
65+
+ "separated by ',', for example: db1,test_db*", notes = "DBs not in this list are excluded. If not set, all DBs are monitored")
6666
private String databaseWhiteList;
6767

6868
@ApiModelProperty(value = "List of tables to be collected, supporting regular expressions, "
69-
+ "seperated by ',', for example: tb1,user*", notes = "Tables not in this list are excluded. By default, all tables are monitored")
69+
+ "separated by ',', for example: tb1,user*", notes = "Tables not in this list are excluded. By default, all tables are monitored")
7070
private String tableWhiteList;
7171

7272
@ApiModelProperty("Database time zone, Default is UTC")

inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSource.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ public class OceanBaseBinlogSource extends StreamSource {
6363
@ApiModelProperty("Whether include schema, default is 'false'")
6464
private String includeSchema;
6565

66-
@ApiModelProperty(value = "List of DBs to be collected, seperated by ',', supporting regular expressions")
66+
@ApiModelProperty(value = "List of DBs to be collected, separated by ',', supporting regular expressions")
6767
private String databaseWhiteList;
6868

69-
@ApiModelProperty(value = "List of tables to be collected, seperated by ',',supporting regular expressions")
69+
@ApiModelProperty(value = "List of tables to be collected, separated by ',',supporting regular expressions")
7070
private String tableWhiteList;
7171

7272
@ApiModelProperty("Database time zone, Default is UTC")

inlong-manager/manager-pojo/src/main/java/org/apache/inlong/manager/pojo/source/oceanbase/OceanBaseBinlogSourceDTO.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ public class OceanBaseBinlogSourceDTO {
6262
private String includeSchema;
6363

6464
@ApiModelProperty(value = "List of DBs to be collected, supporting regular expressions, "
65-
+ "seperated by ',', for example: db1,test_db*", notes = "DBs not in this list are excluded. If not set, all DBs are monitored")
65+
+ "separated by ',', for example: db1,test_db*", notes = "DBs not in this list are excluded. If not set, all DBs are monitored")
6666
private String databaseWhiteList;
6767

6868
@ApiModelProperty(value = "List of tables to be collected, supporting regular expressions, "
69-
+ "seperated by ',', for example: tb1,user*", notes = "Tables not in this list are excluded. By default, all tables are monitored")
69+
+ "separated by ',', for example: tb1,user*", notes = "Tables not in this list are excluded. By default, all tables are monitored")
7070
private String tableWhiteList;
7171

7272
@ApiModelProperty("Database time zone, Default is UTC")

inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-cpp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Refer to `release/conf/config_example.json`.
5858
| name | default value | description |
5959
|:-------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|
6060
| thread_num | 10 | number of network sending threads |
61-
| inlong_group_ids | "" | the list of inlong_group_id, seperated by commas, such as "b_inlong_group_test_01, b_inlong_group_test_02" |
61+
| inlong_group_ids | "" | the list of inlong_group_id, separated by commas, such as "b_inlong_group_test_01, b_inlong_group_test_02" |
6262
| enable_groupId_isolation | false | whether different groupid data using different buffer pools inside the sdk |
6363
| buffer_num_per_groupId | 5 | number of buffer pools of each groupid |
6464
| enable_pack | true | whether multiple messages are packed while sending to dataproxy |

inlong-sdk/dataproxy-sdk-twins/dataproxy-sdk-python/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Refer to `demo/config_example.json`.
110110
| name | default value | description |
111111
|:-------------------------|:-------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------|
112112
| thread_num | 10 | number of network sending threads |
113-
| inlong_group_ids | "" | the list of inlong_group_id, seperated by commas, such as "b_inlong_group_test_01, b_inlong_group_test_02" |
113+
| inlong_group_ids | "" | the list of inlong_group_id, separated by commas, such as "b_inlong_group_test_01, b_inlong_group_test_02" |
114114
| enable_groupId_isolation | false | whether different groupid data using different buffer pools inside the sdk |
115115
| buffer_num_per_groupId | 5 | number of buffer pools of each groupid |
116116
| enable_pack | true | whether multiple messages are packed while sending to dataproxy |

0 commit comments

Comments
 (0)