update - 调整task事件处理顺序

This commit is contained in:
wangli 2023-10-08 18:43:13 +08:00
parent fac28adbbb
commit bbf8985fc1
2 changed files with 2 additions and 2 deletions

View File

@ -115,6 +115,6 @@ public class RocketMqBpmTaskEventListener implements BpmTaskEventListener {
@Override
public int getOrder() {
return Integer.MIN_VALUE;
return Integer.MIN_VALUE + 1;
}
}

View File

@ -41,6 +41,6 @@ public class SnapshotBpmTaskTaskEventListener implements BpmTaskEventListener {
@Override
public int getOrder() {
return Integer.MIN_VALUE + 1;
return Integer.MIN_VALUE;
}
}