forked from github/dataease
Merge pull request #11288 from dataease/pr@dev-v2@perf_report_retry
perf(X-Pack): 定时报告-重试任务从本地文件读取报告信息
This commit is contained in:
commit
596abb0401
@ -118,9 +118,9 @@ public class CoreVisualizationExportManage {
|
||||
for (int i = 0; i < headKeys.size(); i++) {
|
||||
String key = headKeys.get(i);
|
||||
Object val = row.get(key);
|
||||
if (ObjectUtils.isEmpty(val))
|
||||
if (ObjectUtils.isEmpty(val)) {
|
||||
tempList.add(StringUtils.EMPTY);
|
||||
if (fieldTypes.get(i) == 3) {
|
||||
} else if (fieldTypes.get(i) == 3) {
|
||||
tempList.add(filterInvalidDecimal(val.toString()));
|
||||
} else {
|
||||
tempList.add(val.toString());
|
||||
|
2
de-xpack
2
de-xpack
@ -1 +1 @@
|
||||
Subproject commit 564d1a52f2c751cf6e671208fc92fc240c21de70
|
||||
Subproject commit 5dfbeaaf9c02463f0fb7b9589ae78bd09ab88fc4
|
Loading…
Reference in New Issue
Block a user