Skip to content

Commit

Permalink
Merge pull request #2 from planningcenter/bm/fix-sqlite3
Browse files Browse the repository at this point in the history
Fix: Import correct SQLite3 module
  • Loading branch information
mcfadden authored Mar 25, 2024
2 parents 7a40749 + 10731a5 commit 5e4c6a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def raw_execute(sql, name, **kwargs)
PostgreSQL::DatabaseStatements.prepend(AutoRetryAllReads)
end
ActiveSupport.on_load(:active_record_sqlite3adapter) do
Sqlite3::DatabaseStatements.prepend(AutoRetryAllReads)
SQLite3::DatabaseStatements.prepend(AutoRetryAllReads)
end
ActiveSupport.on_load(:active_record_trilogyadapter) do
Trilogy::DatabaseStatements.prepend(AutoRetryAllReads)
Expand Down

0 comments on commit 5e4c6a7

Please sign in to comment.