From 1f5ad100307e65c02e2675700259a49b8eb7594b Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Wed, 21 May 2014 10:23:17 +0100 Subject: [PATCH] Issue #2269453 by olli: Apc_fetch() expects a string or array of strings. --- core/lib/Drupal/Core/Cache/ApcuBackend.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/lib/Drupal/Core/Cache/ApcuBackend.php b/core/lib/Drupal/Core/Cache/ApcuBackend.php index e086488545c3..ffaeba308495 100644 --- a/core/lib/Drupal/Core/Cache/ApcuBackend.php +++ b/core/lib/Drupal/Core/Cache/ApcuBackend.php @@ -243,8 +243,7 @@ public function deleteAll() { * {@inheritdoc} */ public function garbageCollection() { - // Any call to apc_fetch() causes APC to expunge expired items. - apc_fetch(''); + // APC performs garbage collection automatically. } /** -- GitLab