Merge pull request #1742 from yifanzheng/hotfix

fix issues: #1695,#1700,#1729
This commit is contained in:
dingxiaobo 2023-04-13 10:57:56 +08:00 committed by GitHub
commit 2ebc1bb447
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -105,7 +105,7 @@ public class CoreConstant {
public static final String DATAX_JOB_POSTHANDLER_PLUGINNAME = "job.postHandler.pluginName";
// ----------------------------- 局部使用的变量
public static final String JOB_WRITER = "reader";
public static final String JOB_WRITER = "writer";
public static final String JOB_READER = "reader";

View File

@ -62,7 +62,7 @@ public class DbUtils {
++retry;
LOG.warn("fetch value with {} error {}", query, e);
} finally {
DBUtil.closeDBResources(result, stmt, null);
DBUtil.closeDBResources(result, stmt, conn);
}
} while (need_retry);