httpTimeout 기본값 -1 -> 10000 (10sec)

This commit is contained in:
cho
2026-01-20 10:49:10 +09:00
parent 7bebc5725c
commit 65860f78d1
@@ -78,7 +78,7 @@ public abstract class HttpClient5AdapterServiceSupport implements HttpClientAdap
String trustStorePassword = null;
int connectionTimeout = 0;
int timeout = -1;
int timeout = 10000; // 기존값 -1 인데, 의미가 없음, -1로 설정될경우 client에서 에러남.
int traceLevel = 0;
long slowTranTime = 2000L;