Skip to content

Commit

Permalink
Merge pull request #759 from helixml/fix/dsn-2
Browse files Browse the repository at this point in the history
fix: missed one dsn log
  • Loading branch information
lukemarsden authored Jan 23, 2025
2 parents a1f9595 + 8885219 commit 1660cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/pkg/store/postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ func connect(ctx context.Context, cfg config.Store) (*gorm.DB, error) {
sqlDB.SetConnMaxIdleTime(time.Hour)
sqlDB.SetConnMaxLifetime(time.Minute)

log.Info().Str("dsn", dsn).Msg("sql store connected")
log.Info().Msg("sql store connected")

// success
return db, nil
Expand Down

0 comments on commit 1660cb1

Please sign in to comment.