You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/15 16:42:33 UTC

[plc4x] branch develop updated: test(plc4go/cbus): increase timeout for connection close wait

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

sruehl 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 0aa654a6ec test(plc4go/cbus): increase timeout for connection close wait
0aa654a6ec is described below

commit 0aa654a6ec6e44705c4dd174c2301aeb4b868f1b
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Thu Jun 15 18:42:26 2023 +0200

    test(plc4go/cbus): increase timeout for connection close wait
---
 plc4go/internal/cbus/Browser_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/plc4go/internal/cbus/Browser_test.go b/plc4go/internal/cbus/Browser_test.go
index ba70fc1bea..7794f16574 100644
--- a/plc4go/internal/cbus/Browser_test.go
+++ b/plc4go/internal/cbus/Browser_test.go
@@ -431,7 +431,7 @@ func TestBrowser_getInstalledUnitAddressBytes(t *testing.T) {
 				}
 				fields.connection = connectionConnectResult.GetConnection()
 				t.Cleanup(func() {
-					timer := time.NewTimer(1 * time.Second)
+					timer := time.NewTimer(6 * time.Second)
 					t.Cleanup(func() {
 						utils.CleanupTimer(timer)
 					})