From 5c3f596178db98d429a9bc05f85053ff48b4ba7e Mon Sep 17 00:00:00 2001 From: Vidar Date: Fri, 23 Feb 2018 11:34:14 +0100 Subject: [PATCH] Fixed bug: Wrong service loaded when enabling redis session on Platform.sh (#267) --- app/config/env/platformsh.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/env/platformsh.php b/app/config/env/platformsh.php index b245f74537..2c864b04aa 100644 --- a/app/config/env/platformsh.php +++ b/app/config/env/platformsh.php @@ -69,7 +69,7 @@ $container->setParameter('cache_dsn', sprintf('%s:%d', $endpoint['host'], $endpoint['port']) . '?retry_interval=3'); $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../cache_pool')); - $loader->load('cache.memcached.yml'); + $loader->load('cache.redis.yml'); } } elseif (isset($relationships['cache'])) { // Fallback to memcached if here (deprecated, we will only handle redis here in the future)