Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant message on machines pg cluster creation #1455

Merged
merged 1 commit into from
Nov 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 1 addition & 2 deletions flypg/launcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/")
Expand Down