Skip to content

Commit

Permalink
Fix for port-forward being closed during tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkfdoherty committed Jul 12, 2022
1 parent 79470e1 commit 83110ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/framework/postgresql/dsiclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,5 +199,5 @@ func dbURL(credentials map[string]string, port string) string {
user := credentials[DbAdminUsernameKey]
password := credentials[DbAdminPasswordKey]
database := credentials[DatabaseKey]
return protocol + "://" + user + ":" + password + "@" + hostname + ":" + port + "/" + database
return protocol + "://" + user + ":" + password + "@" + hostname + ":" + port + "/" + database + "?" + "sslmode=disable"
}

0 comments on commit 83110ba

Please sign in to comment.