고객요구사항

인터페이스 TIMEOUT만 사용하도록 수정 (HTTP_TIMEOUT 미사용. 단, token거래(인터페이스 존재하지않음) 발급은
어댑터 프로퍼티값 사용.)
타임아웃 기준을 단일화하여 운영 혼란 방지
This commit is contained in:
cho
2026-01-27 14:52:50 +09:00
parent c898b54cde
commit 1c139be54e
5 changed files with 15 additions and 13 deletions
@@ -126,9 +126,10 @@ public class SocketProcess extends DefaultProcess {
}
public void outboundCtrlCallServiceAsync() throws Exception {
/**
* async에서는 인터페이스 값을 설정하지 않고 Adapter의 타임아웃을 쓰기위해서 설정하지 않음
*/
// 인터페이스에 셋팅된 타임아웃설정
int iTimeoutValue = getTimeoutCodeToValue();
this.timeout = iTimeoutValue * 1000;
this.tempProp.put(INTERFACE_TIME_OUT, "" + this.timeout);
try {
this.resObject = SocketSender.callService(this.adapterGroupName, this.outboundProp, this.reqObject,
this.tempProp);