Skip to content

Commit bc1ed77

Browse files
authored
CLOUDP-200470 Quote connection string (#3354)
1 parent 638c43f commit bc1ed77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/cli/deployments/setup.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,8 @@ func (opts *SetupOpts) runLocal(ctx context.Context) error {
588588
}
589589

590590
_, _ = log.Warningln("Deployment created!")
591-
_, _ = fmt.Fprintf(opts.OutWriter, "Connection string: %s\n", cs)
591+
_, _ = fmt.Fprintf(opts.OutWriter, `Connection string: "%s"
592+
`, cs)
592593
_, _ = log.Warningln("")
593594

594595
return opts.runConnectWith(cs)

0 commit comments

Comments
 (0)