Skip to content

Commit

Permalink
Fix the fixed fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyhedral committed Oct 27, 2024
1 parent af9143b commit 630e1d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func buildDbURL() (*url.URL, string) {

var host string
if portFound {
host = fmt.Sprintf("%s:%d", dbHost, dbPort)
host = fmt.Sprintf("%s:%s", dbHost, dbPort)
} else {
host = dbHost
}
Expand Down

0 comments on commit 630e1d7

Please sign in to comment.