From 222243493417b3e0892e2a77784faf9e570ce08d Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Tue, 3 Mar 2026 17:26:42 +1000 Subject: [PATCH] fix: connection formatting when changing connection with 'ctx conn' --- cmd/uncloud/context/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/uncloud/context/connection.go b/cmd/uncloud/context/connection.go index 23840d47..08da54a4 100644 --- a/cmd/uncloud/context/connection.go +++ b/cmd/uncloud/context/connection.go @@ -60,7 +60,7 @@ func selectConnection(uncli *cli.CLI) error { return fmt.Errorf("save config: %w", err) } - fmt.Printf("Default connection for context '%s' is now '%s'.\n", currentCtxName, selected) + fmt.Printf("Default connection for context '%s' is now '%s'.\n", currentCtxName, selected.String()) return nil }