Skip to content

Commit

Permalink
Dev 1.7.0 bug fix (#579)
Browse files Browse the repository at this point in the history
* Resource reset code optimization

* Resource reset code optimization

* Resource johhistory code optimization

* Resource johhistory code optimization

* revent jobhistory: get data

* update isreused

* fix executionCode  error

* Code optimization

* Code optimization

* Code optimization

* Code optimization

* Code optimization

* code review fix

* code review fix

* Fix Security Work Order: Upgrade Spring Version:5.3.27  -> 5.3.34

* Optimize script log address

* SDK interface adds new parameters

* Rollback modification to ensure normal cross cluster functionality

* fix jobhistory query with code

* fix jobhistory query with code

* fix download  slowly

* fix download  slowly

* Optimize the execution code length

* Optimize code

---------

Co-authored-by: “v_kkhuang” <“420895376@qq.com”>
  • Loading branch information
v-kkhuang and “v_kkhuang” committed Aug 20, 2024
1 parent b08057c commit a4ae669
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,7 @@ public static byte[] downLoadJobToExcel(
formatExecuteApplicationName(
queryTaskVO.getExecuteApplicationName(), queryTaskVO.getRequestApplicationName()));
if (viewResult) {
createCell(
row,
11,
viewResult ? formatDateTime(queryTaskVO.getCreatedTime()) : queryTaskVO.getUmUser());
createCell(row, 11, queryTaskVO.getUmUser());
createCell(row, 12, formatDateTime(queryTaskVO.getCreatedTime()));
} else {
createCell(row, 11, formatDateTime(queryTaskVO.getCreatedTime()));
Expand Down Expand Up @@ -151,7 +148,7 @@ private static void createCell(Row row, int columnIndex, Object value) {

// 截断executionCode的方法
private static String abbreviateExecutionCode(String executionCode) {
return StringUtils.abbreviate(executionCode, 32767);
return StringUtils.abbreviate(executionCode, 1000);
}

// 格式化isReuse的方法
Expand Down

0 comments on commit a4ae669

Please sign in to comment.