Skip to content

Commit 7d282b4

Browse files
committed
Move removal target of SQLite's retries config to 8.1
This warning was just introduced, we need one release in between for people to see it.
1 parent b26a9fd commit 7d282b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ def configure_connection
788788
@raw_connection.busy_handler_timeout = timeout
789789
elsif @config[:retries]
790790
ActiveRecord.deprecator.warn(<<~MSG)
791-
The retries option is deprecated and will be removed in Rails 8.0. Use timeout instead.
791+
The retries option is deprecated and will be removed in Rails 8.1. Use timeout instead.
792792
MSG
793793
retries = self.class.type_cast_config_to_integer(@config[:retries])
794794
raw_connection.busy_handler { |count| count <= retries }

0 commit comments

Comments
 (0)