Skip to content

Commit

Permalink
bugfix: 纯IPv6环境分发本地文件/第三方文件一直卡住 TencentBlueKing#1530
Browse files Browse the repository at this point in the history
去除多余的序列化字段
  • Loading branch information
jsonwan committed Nov 25, 2022
1 parent 47278c8 commit 2a88e46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package com.tencent.bk.job.file_gateway.model.resp.inner;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.tencent.bk.job.common.util.json.JsonUtils;
import com.tencent.bk.job.file_gateway.consts.TaskStatusEnum;
import lombok.AllArgsConstructor;
Expand Down Expand Up @@ -52,6 +53,7 @@ public boolean isDone() {
*
* @return 描述信息
*/
@JsonIgnore
public String getSimpleDesc() {
Map<String, Object> map = new HashMap<>();
map.put("batchTaskId", batchTaskId);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@

package com.tencent.bk.job.file_gateway.model.resp.inner;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.tencent.bk.job.common.util.json.JsonUtils;
import com.tencent.bk.job.file_gateway.consts.TaskStatusEnum;
import com.tencent.bk.job.logsvr.model.service.ServiceHostLogDTO;
Expand Down Expand Up @@ -61,6 +62,7 @@ public boolean isDone() {
*
* @return 描述信息
*/
@JsonIgnore
public String getSimpleDesc() {
Map<String, Object> map = new HashMap<>();
map.put("taskId", taskId);
Expand Down

0 comments on commit 2a88e46

Please sign in to comment.