From 24d5ed2f5548ae515b2bd2cda55e78aea865cb44 Mon Sep 17 00:00:00 2001 From: Dombi Attila <83396+dombesz@users.noreply.github.com> Date: Thu, 25 Jan 2024 17:16:42 +0200 Subject: [PATCH] Remove old allow_concurrency = false setting in the test config --- config/environments/test.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/config/environments/test.rb b/config/environments/test.rb index 347ec874ab2..f4538fbd3de 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -49,9 +49,6 @@ Rails.application.configure do # loading is working properly before deploying your code. config.eager_load = ENV['CI'].present? || ENV['EAGER_LOAD'].present? - # This setting is false by default, but we define it explicitly - config.allow_concurrency = false - # Configure public file server for tests with Cache-Control for performance. config.public_file_server.enabled = true config.public_file_server.headers = { 'Cache-Control' => 'public, max-age=3600' }