adamsaghy commented on code in PR #5356:
URL: https://github.com/apache/fineract/pull/5356#discussion_r2746485523
##########
integration-tests/src/test/java/org/apache/fineract/integrationtests/common/FineractClientHelper.java:
##########
@@ -43,7 +44,7 @@ public static FineractClient createNewFineractClient(String
username, String pas
String url = System.getProperty("fineract.it.url", buildURI());
// insecure(true) should *ONLY* ever be used for
https://localhost:8443, NOT in real clients!!
FineractClient.Builder builder =
FineractClient.builder().insecure(true).baseURL(url).tenant(ConfigProperties.Backend.TENANT)
- .basicAuth(username,
password).logging(HttpLoggingInterceptor.Level.NONE);
+ .basicAuth(username,
password).logging(HttpLoggingInterceptor.Level.NONE).readTimeout(Duration.ofSeconds(0));
Review Comment:
Do we really need this change?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]