Skip to content

Commit

Permalink
add toString for CuratorDataXTaskMessage
Browse files Browse the repository at this point in the history
  • Loading branch information
baisui1981 committed Apr 12, 2024
1 parent 5fadadf commit b92a103
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tis-console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ spec:
mountPath: /opt/app/tis-uber/tis-assemble/conf/tis-web-config/
- name: tis-console-pvc
mountPath: "/opt/data"
image: registry.cn-hangzhou.aliyuncs.com/tis/tis-console:4.0.0.18
image: registry.cn-hangzhou.aliyuncs.com/tis/tis-console:4.0.0.21
# command: [ "/bin/sh", "-c", "sleep 1000000" ]
ports:
- name: tis-8080
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,4 +126,18 @@ public void setJobId(Integer jobId) {
public void setJobName(String jobName) {
this.jobName = jobName;
}


@Override
public String toString() {
return "{" +
"dataXName='" + dataXName + '\'' +
", taskSerializeNum=" + taskSerializeNum +
", resType=" + resType +
", jobId=" + jobId +
", jobName='" + jobName + '\'' +
", allRowsApproximately=" + allRowsApproximately +
", execEpochMilli=" + execEpochMilli +
'}';
}
}

0 comments on commit b92a103

Please sign in to comment.