From 553a47cd4ae1a719eea34f62452914b3b4aa234f Mon Sep 17 00:00:00 2001 From: catch <catch@35733.no-reply.drupal.org> Date: Mon, 1 Apr 2024 17:56:35 +0100 Subject: [PATCH] Issue #3437344 by longwave: State cache bin is inconsistently chosen --- core/lib/Drupal/Core/State/State.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/State/State.php b/core/lib/Drupal/Core/State/State.php index e2d0c2c79966..e7669aa6808d 100644 --- a/core/lib/Drupal/Core/State/State.php +++ b/core/lib/Drupal/Core/State/State.php @@ -50,7 +50,7 @@ class State extends CacheCollector implements StateInterface { public function __construct(KeyValueFactoryInterface $key_value_factory, CacheBackendInterface $cache = NULL, LockBackendInterface $lock = NULL) { if (!$cache) { @trigger_error('Calling ' . __METHOD__ . '() without the $cache argument is deprecated in drupal:10.3.0 and is required in drupal:11.0.0. See https://www.drupal.org/node/3177901', E_USER_DEPRECATED); - $cache = \Drupal::cache('discovery'); + $cache = \Drupal::cache('bootstrap'); } if (!$lock) { @trigger_error('Calling ' . __METHOD__ . '() without the $lock argument is deprecated in drupal:10.3.0 and is required in drupal:11.0.0. See https://www.drupal.org/node/3177901', E_USER_DEPRECATED); -- GitLab