Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40744e0 commit ea54110Copy full SHA for ea54110
‎server/api-service/lowcoder-sdk/src/main/java/org/lowcoder/sdk/webclient/WebClientBuildHelper.java
@@ -95,8 +95,8 @@ public Builder toWebClientBuilder() {
95
.responseTimeout(Duration.ofMillis(timeoutMs))
96
.option(ChannelOption.CONNECT_TIMEOUT_MILLIS, timeoutMs.intValue())
97
.doOnConnected(conn -> conn
98
- .addHandlerLast(new ReadTimeoutHandler(timeoutMs, TimeUnit.SECONDS))
99
- .addHandlerLast(new WriteTimeoutHandler(timeoutMs, TimeUnit.SECONDS)));
+ .addHandlerLast(new ReadTimeoutHandler(timeoutMs, TimeUnit.MILLISECONDS))
+ .addHandlerLast(new WriteTimeoutHandler(timeoutMs, TimeUnit.MILLISECONDS)));
100
}
101
102
if (sslConfig != null) {
0 commit comments