From da2a79d8746cf39ec745053faacbf840db64895a Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 30 Jan 2022 21:11:54 +0100 Subject: [PATCH] websocket ack timeouts --- serverCommunication/serverCommunication.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serverCommunication/serverCommunication.go b/serverCommunication/serverCommunication.go index e316360..3fdfb6f 100644 --- a/serverCommunication/serverCommunication.go +++ b/serverCommunication/serverCommunication.go @@ -36,7 +36,7 @@ func AckHandler() { } */ for serverName, mcClient := range cache.MinecraftClients { - logger.Web.Println("ackHandler mc client", serverName, mcClient.SendQueueMessages, kraSettingsConfig.Cfg.WebSocket.AckTimeouts) + logger.Web.Println("ackHandler mc client", serverName, mcClient.SendQueueMessages, kraSettingsConfig.Cfg.WebSocket.AckTimeouts, kraSettingsConfig.Cfg.WebSocket.AckTimeouts[2]) } } }