From 347e1dffca1f52560935ecdefb1f51c1c564df60 Mon Sep 17 00:00:00 2001 From: Alex Date: Sat, 5 Feb 2022 21:37:08 +0100 Subject: [PATCH] changed ack handler delay to 3 seconds to debug the log messages --- serverCommunication/serverCommunication.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serverCommunication/serverCommunication.go b/serverCommunication/serverCommunication.go index c191e81..b1de25e 100644 --- a/serverCommunication/serverCommunication.go +++ b/serverCommunication/serverCommunication.go @@ -27,7 +27,7 @@ func getClientByDest(dest int, uuid string) (*structs.WebClient, *structs.Minecr */ func AckHandler() { - ticker := time.NewTicker(20 * time.Millisecond) // 20 * time.Millisecond + ticker := time.NewTicker(3 * time.Second) // 20 * time.Millisecond for _ = range ticker.C { currentTime := time.Now()