fix(ops): fix DispatchEngine instantiation error in test config
Some checks failed
Java CI with Maven / build (11) (push) Has been cancelled
Java CI with Maven / build (17) (push) Has been cancelled
Java CI with Maven / build (8) (push) Has been cancelled

This commit is contained in:
lzh
2026-01-24 19:20:43 +08:00
parent 850a9b1f9f
commit 7cf8e5ed2f
2 changed files with 25 additions and 3 deletions

View File

@@ -320,7 +320,7 @@ public class OrderLifecycleManagerImpl implements OrderLifecycleManager {
// 记录业务日志
Map<String, Object> extra = new HashMap<>();
extra.put("cancelReason", reason);
extra.put("operatorType", operatorType != null ? operatorType.getCode() : "SYSTEM");
extra.put("operatorType", operatorType != null ? operatorType.getType() : "SYSTEM");
eventLogRecorder.record(EventLogRecord.builder()
.module("clean")