Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions coderd/database/dbtestutil/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func initDefaultConnection(t TBSubset) error {
errSubstrings := []string{
"connection refused", // this happens on Linux when there's nothing listening on the port
"No connection could be made", // like above but Windows
"connection reset by peer", // this happens when PostgreSQL resets the connection
}
errString := dbErr.Error()
for _, errSubstring := range errSubstrings {
Expand Down
Loading