From 97b1b86de4d18d0564ad68a0f928027b7e5ec5fe Mon Sep 17 00:00:00 2001 From: Filipe C Menezes Date: Thu, 31 Oct 2024 13:39:29 +0000 Subject: [PATCH] CLOUDP-200470 Quote connection string --- internal/cli/deployments/setup.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/cli/deployments/setup.go b/internal/cli/deployments/setup.go index e8c7334c20..47e8b73955 100644 --- a/internal/cli/deployments/setup.go +++ b/internal/cli/deployments/setup.go @@ -588,7 +588,8 @@ func (opts *SetupOpts) runLocal(ctx context.Context) error { } _, _ = log.Warningln("Deployment created!") - _, _ = fmt.Fprintf(opts.OutWriter, "Connection string: %s\n", cs) + _, _ = fmt.Fprintf(opts.OutWriter, `Connection string: "%s" +`, cs) _, _ = log.Warningln("") return opts.runConnectWith(cs)