masato-hi
masato-hi
@kamipo Thanks for the review and reference. Removed the process when `legacy_connection_handling` is true because the connection to the replica will continue to remain.
@kamipo I'm sorry my verification wasn't enough. For example, if you set `ActiveRecord::Base.legacy_connection_handling` to true and execute the following code will create a connection to primary in `ActiveRecord::Base.connection_handler`. ``` ActiveRecord::Base.connection.execute('SELECT...
@kamipo The problem I'm having trouble with at the moment is something like the sample code below. The problem is that one of the three cases is wrong or ActiveRecord::Base#connection...
I needed a feature like `BeforeSubtest` to initialize the data in the database test. It's possible to split the test, but I wanted to use a subtest as the context....
In Ruby, we were able to pre-download the webdriver by running the following code before running Selenium in multiple threads. ``` require 'selenium/webdriver' options = Selenium::WebDriver::Chrome::Options.new Selenium::WebDriver::SeleniumManager.driver_path(options) ``` The code...