From ee195e902fde11ce56360026fdca07cd77176adb Mon Sep 17 00:00:00 2001 From: David Ortiz Date: Fri, 22 Feb 2019 12:26:50 +0100 Subject: [PATCH] test/test_helpers/configuration: set redis.async --- test/test_helpers/configuration.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_helpers/configuration.rb b/test/test_helpers/configuration.rb index d56085d5a..9b5a1bc5c 100644 --- a/test/test_helpers/configuration.rb +++ b/test/test_helpers/configuration.rb @@ -7,4 +7,5 @@ config.redshift.port = 5432 config.redshift.dbname = 'test' config.redshift.user = 'postgres' + config.redis.async = ENV['CONFIG_REDIS_ASYNC'].to_s == 'true' ? true : false end