This is an automated email from the ASF dual-hosted git repository.
bbende pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new ca384b3 NIFI-7620 Fixed failing unit test due to timeout. (#4395)
ca384b3 is described below
commit ca384b3f3b346685c2174b0996126f6b71892d4b
Author: Andy LoPresto <[email protected]>
AuthorDate: Thu Jul 9 06:14:34 2020 -0700
NIFI-7620 Fixed failing unit test due to timeout. (#4395)
---
.../test/java/org/apache/nifi/remote/client/http/TestHttpClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java
b/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java
index 2b90745..f6bf811 100644
---
a/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java
+++
b/nifi-commons/nifi-site-to-site-client/src/test/java/org/apache/nifi/remote/client/http/TestHttpClient.java
@@ -1376,7 +1376,7 @@ public class TestHttpClient {
try (
SiteToSiteClient client = getDefaultBuilder()
- .timeout(1, TimeUnit.SECONDS)
+ .timeout(5, TimeUnit.SECONDS)
.portName("output-timeout-data-ex")
.build()
) {