Async원래처럼 return null로 수정함

This commit is contained in:
jaewohong
2026-01-19 08:28:57 +09:00
parent b3e7cec379
commit a85c035e6d
@@ -1365,7 +1365,10 @@ public class RequestProcessor extends RequestProcessorSupport {
} }
} }
else { else {
// 비동기 거래, S-A의 응답거래시에는 NULL을 리턴
return null; return null;
// S-A 에서 Sync 100에 대한 ack 응답시 http header 에 traceId 에 uuid를 넣어달라고 해서..
//return vo.getUuid();
} }
} }