From b7c853770f3b39501d0a85c987844a01f59d61f6 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 30 Jan 2022 21:49:20 +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 3fdfb6f..e316360 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, kraSettingsConfig.Cfg.WebSocket.AckTimeouts[2]) + logger.Web.Println("ackHandler mc client", serverName, mcClient.SendQueueMessages, kraSettingsConfig.Cfg.WebSocket.AckTimeouts) } } }