feat(REQ-4624) - 兼容 test、pre 环境的一些问题
This commit is contained in:
parent
8673273039
commit
9fda02747f
@ -0,0 +1,25 @@
|
||||
package cn.axzo.workflow.core.engine.listener;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.flowable.engine.delegate.DelegateExecution;
|
||||
import org.flowable.engine.delegate.ExecutionListener;
|
||||
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 部分有告警设置的,在节点正常执行后,将清除告警
|
||||
*
|
||||
* @author wangli
|
||||
* @since 2025-04-24 16:03
|
||||
*/
|
||||
@Component
|
||||
@RefreshScope
|
||||
@Slf4j
|
||||
@Deprecated
|
||||
public class EngineAlarmClearEventListener implements ExecutionListener {
|
||||
private static final long serialVersionUID = -4246836140144129539L;
|
||||
|
||||
@Override
|
||||
public void notify(DelegateExecution execution) {
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user