Skip to content
Snippets Groups Projects
Commit a7c471b0 authored by Florent Gluck's avatar Florent Gluck
Browse files

Doh! vmattach was blocking instead of being asynchronous (probably a change...

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
parent 03c2d888
No related branches found
No related tags found
No related merge requests found
......@@ -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)
}
......
......@@ -7,7 +7,7 @@ import (
const (
major = 1
minor = 11
bugfix = 1
bugfix = 2
)
var version params.Version = params.NewVersion(major, minor, bugfix)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment