Fix formatting in Fatalf call
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Peter Stuifzand 2021-05-13 11:04:06 +02:00
parent eb3dba4d17
commit 0105b24846
Signed by: peter
GPG Key ID: 374322D56E5209E8

View File

@ -221,7 +221,7 @@ func main() {
options.pool = pool
db, err := sql.Open("postgres", "host=database user=postgres password=simple dbname=ekster sslmode=disable")
if err != nil {
log.Fatalf("database open failed: %w", err)
log.Fatalf("database open failed: %s", err)
}
options.database = db