Skip to content

Commit

Permalink
Revert "Use port 5432 to connect to postgres"
Browse files Browse the repository at this point in the history
This reverts commit 8ded67b.

Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Dec 22, 2023
1 parent 8ded67b commit 3c7dbf6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flytestdlib/database/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ var defaultConfig = &DbConfig{
MaxOpenConnections: 100,
ConnMaxLifeTime: config.Duration{Duration: time.Hour},
Postgres: PostgresConfig{
Port: 5432,
// These values are suitable for local sandbox development
Host: "localhost",
Port: 30001,
DbName: postgresStr,
User: postgresStr,
Password: postgresStr,
Expand Down

0 comments on commit 3c7dbf6

Please sign in to comment.