From eb1395223d678e0a9f2ab0669eae37e9ac19e3c2 Mon Sep 17 00:00:00 2001 From: yedf2 <120050102@qq.com> Date: Mon, 10 Jan 2022 18:28:29 +0800 Subject: [PATCH] change wait process gid to 4 --- test/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/types.go b/test/types.go index c583a28..0db969d 100644 --- a/test/types.go +++ b/test/types.go @@ -33,7 +33,7 @@ func waitTransProcessed(gid string) { case id := <-dtmsvr.TransProcessedTestChan: logger.FatalfIf(id != gid, "------- expecting: %s but %s found", gid, id) logger.Debugf("finish for gid %s", gid) - case <-time.After(time.Duration(time.Second * 3)): + case <-time.After(time.Duration(time.Second * 4)): logger.FatalfIf(true, "Wait Trans timeout") } }