From a7c471b0a1cf12a426a0a73a8306f5652235072c Mon Sep 17 00:00:00 2001 From: Florent Gluck <florent.gluck@hesge.ch> Date: Sat, 28 Sep 2024 00:23:05 +0200 Subject: [PATCH] Doh! vmattach was blocking instead of being asynchronous (probably a change used for debugging that I forgot to revert). Bumpped to version 1.11.2 --- src/client/cmdVM/vmAttachAsync.go | 2 +- src/client/version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/cmdVM/vmAttachAsync.go b/src/client/cmdVM/vmAttachAsync.go index d9959b16..8ab1ea4b 100644 --- a/src/client/cmdVM/vmAttachAsync.go +++ b/src/client/cmdVM/vmAttachAsync.go @@ -47,7 +47,7 @@ func (cmd *AttachAsync)Run(args []string) int { return 1 } - statusCode, err := AttachToVMs(creds, true) + statusCode, err := AttachToVMs(creds, false) if err != nil { u.PrintlnErr(err) } diff --git a/src/client/version/version.go b/src/client/version/version.go index 0d0925bd..9cda1f6b 100644 --- a/src/client/version/version.go +++ b/src/client/version/version.go @@ -7,7 +7,7 @@ import ( const ( major = 1 minor = 11 - bugfix = 1 + bugfix = 2 ) var version params.Version = params.NewVersion(major, minor, bugfix) -- GitLab