changed ack handler delay to 3 seconds to debug the log messages

master
Alex 2022-02-05 21:37:08 +01:00
parent f5a793b526
commit 347e1dffca
1 changed files with 1 additions and 1 deletions

View File

@ -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()