feat:(1.3.0-beta1): 1. 工作流列表返回上下文信息

This commit is contained in:
opensnail 2024-12-28 21:12:25 +08:00
parent 875f7d5cf3
commit 5abd1be3f1
2 changed files with 6 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class RetryErrorMoreThresholdAlarmSchedule extends AbstractSchedule imple
@Override
protected void doExecute() {
SnailJobLog.LOCAL.info("retryErrorMoreThreshold time[{}] ip:[{}]", LocalDateTime.now(),
SnailJobLog.LOCAL.debug("retryErrorMoreThreshold time[{}] ip:[{}]", LocalDateTime.now(),
NetUtil.getLocalIpStr());
PartitionTaskUtils.process(this::getNotifyConfigPartitions, this::doHandler, 0);
}

View File

@ -64,4 +64,9 @@ public class WorkflowResponseVO {
* 通知告警场景配置id列表
*/
private Set<Long> notifyIds;
/**
* 工作流上下文
*/
private String wfContext;
}