You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/08/28 15:17:50 UTC

[plc4x] branch develop updated: - Increased the testsuite timeout to avoid randomly failing tests on the CI Server.

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/develop by this push:
     new 09e5b99  - Increased the testsuite timeout to avoid randomly failing tests on the CI Server.
09e5b99 is described below

commit 09e5b99761913ccf8d0271f4e04720395f336e59
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Fri Aug 28 17:17:43 2020 +0200

    - Increased the testsuite timeout to avoid randomly failing tests on the CI Server.
---
 .../main/java/org/apache/plc4x/test/driver/DriverTestsuiteRunner.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4j/utils/test-utils/src/main/java/org/apache/plc4x/test/driver/DriverTestsuiteRunner.java b/plc4j/utils/test-utils/src/main/java/org/apache/plc4x/test/driver/DriverTestsuiteRunner.java
index be6b242..607dc88 100644
--- a/plc4j/utils/test-utils/src/main/java/org/apache/plc4x/test/driver/DriverTestsuiteRunner.java
+++ b/plc4j/utils/test-utils/src/main/java/org/apache/plc4x/test/driver/DriverTestsuiteRunner.java
@@ -266,7 +266,7 @@ public class DriverTestsuiteRunner {
                         throw new DriverTestsuiteException("No response expected.");
                     }
                     try {
-                        final PlcResponse plcResponse = responseFuture.get(1000, TimeUnit.MILLISECONDS);
+                        final PlcResponse plcResponse = responseFuture.get(5000, TimeUnit.MILLISECONDS);
                         // Reset the future.
                         responseFuture = null;
                         final String serializedResponse = mapper.writeValueAsString(plcResponse);