From 167c0aa3bf381049619f8df0eea9d5edc2e74acb Mon Sep 17 00:00:00 2001 From: catflydotio <95245363+catflydotio@users.noreply.github.com> Date: Sat, 12 Nov 2022 15:12:58 -0500 Subject: [PATCH] Remove redundant message on pg cluster creation --- flypg/launcher.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flypg/launcher.go b/flypg/launcher.go index 535b5f6c78..966156d234 100644 --- a/flypg/launcher.go +++ b/flypg/launcher.go @@ -175,8 +175,7 @@ func (l *Launcher) LaunchMachinesPostgres(ctx context.Context, config *CreateClu fmt.Fprintln(io.Out) fmt.Fprintln(io.Out, colorize.Bold("Connect to postgres")) - fmt.Fprintf(io.Out, "Any app within the %s organization can connect to this Postgres using the following credentials:\n", config.Organization.Name) - fmt.Fprintf(io.Out, "For example: %s\n", connStr) + fmt.Fprintf(io.Out, "Any app within the %s organization can connect to this Postgres using the following connection string:\n", config.Organization.Name) fmt.Fprintln(io.Out) fmt.Fprintln(io.Out, "Now that you've set up postgres, here's what you need to understand: https://fly.io/docs/reference/postgres-whats-next/")