Skip to content

Commit 61eb755

Browse files
committed
hotfix 31266 日志删除
1 parent 5f2f7cd commit 61eb755

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flinkx-hive/flinkx-hive-writer/src/main/java/com/dtstack/flinkx/hive/writer/HiveOutputFormat.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,8 @@ public void writeRecord(Row row) throws IOException {
197197
event = GsonUtil.GSON.fromJson((String) tempObj, GsonUtil.gsonMapTypeToken);
198198
}catch (JsonSyntaxException e){
199199
// is not a json string
200-
LOG.warn("bad json string:【{}】", tempObj);
200+
//tempObj 不是map类型 则event直接往下传递
201+
// LOG.warn("bad json string:【{}】", tempObj);
201202
}
202203
}
203204
}

0 commit comments

Comments
 (0)