feat(REQ-4624) - 兼容 test、pre 环境的一些问题
This commit is contained in:
parent
b42ed0b38c
commit
8673273039
@ -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.JavaDelegate;
|
||||
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
/**
|
||||
* 节点运行超时告警
|
||||
*
|
||||
* @author wangli
|
||||
* @since 2025-04-24 14:21
|
||||
*/
|
||||
@Component
|
||||
@RefreshScope
|
||||
@Slf4j
|
||||
@Deprecated
|
||||
public class EngineNodeTimeoutAlterDelegate implements JavaDelegate {
|
||||
|
||||
@Override
|
||||
public void execute(DelegateExecution execution) {
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user