Skip to content

Commit

Permalink
connectionString fix in engine
Browse files Browse the repository at this point in the history
  • Loading branch information
woutslakhorst committed Dec 6, 2023
1 parent f9c50d8 commit 6c62ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/engine.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (e *engine) initSQLDatabase() error {
log.Logger().Debug("Running database migrations...")

// we need the connectionString with adapter specific prefix here
dbURL, err := url.Parse(adapter.connectionString(e.config.SQL.ConnectionString))
dbURL, err := url.Parse(adapter.connectionString(connectionString))
if err != nil {
return err
}
Expand Down

0 comments on commit 6c62ce7

Please sign in to comment.