Skip to content

Commit 10db7cf

Browse files
author
gituser
committed
Merge branch 'hotfix_1.10_4.1.x_36312' into 1.10_release_4.1.x
2 parents 19af9ae + ad7c84a commit 10db7cf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

core/src/main/java/com/dtstack/flink/sql/table/AbstractTableInfo.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ public abstract class AbstractTableInfo implements Serializable {
6868
* error data limit. Task will failed once {@link AbstractDtRichOutputFormat#outDirtyRecords}
6969
* count over limit. Default 1000L;
7070
*/
71-
private Long errorLimit = 0L;
71+
// TODO: 暂时默认值设置为10000,后面排期支持在产品上设置
72+
private Long errorLimit = 10000L;
7273

7374
public String[] getFieldTypes() {
7475
return fieldTypes;

0 commit comments

Comments
 (0)