From 457b0fa3264355f69ba8674218d759d7e430c666 Mon Sep 17 00:00:00 2001 From: ACoolName Date: Tue, 28 May 2024 16:38:28 +0300 Subject: [PATCH] removed fake resize --- servers/servers.go | 1 - 1 file changed, 1 deletion(-) diff --git a/servers/servers.go b/servers/servers.go index 721710e..419bc6d 100644 --- a/servers/servers.go +++ b/servers/servers.go @@ -616,7 +616,6 @@ func (con Connection) AttachServer(ctx *gin.Context) { } height := uint(i_height) - log.Printf("Fake resize %dx%d", width, height) err2 = con.dockerClient.ContainerResize(context.TODO(), containers[0].ID, container.ResizeOptions{Height: height, Width: width}) if err2 != nil { log.Printf("Failed to resize container to %dx%d: %s", width, height, err)