From d9f7befa22486b1e75c66b4e009d8407c4137749 Mon Sep 17 00:00:00 2001 From: Orien Madgwick <497874+orien@users.noreply.github.com> Date: Fri, 24 Jan 2025 04:39:32 +1300 Subject: [PATCH] Active Record --- config/application.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/application.rb b/config/application.rb index aee778992..70e456302 100644 --- a/config/application.rb +++ b/config/application.rb @@ -59,6 +59,8 @@ class Application < Rails::Application # the new default of `true` breaks redirecting to shields.io. config.action_controller.raise_on_open_redirects = false + config.active_support.executor_around_test_case = false + # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies. config.force_ssl = (ENV["FORCE_SSL"] == "1") config.ssl_options = {redirect: {exclude: ->(request) { request.path.match?(/^\/ping(\/|$)/) }}}