From 2f0e2544d3dc8d14a8f4d51a09c3c625627d277c Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 8 Apr 2015 11:32:30 -0700 Subject: [PATCH] Fix a bad method call in cache startup. --- src/applications/cache/spec/PhabricatorDataCacheSpec.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/cache/spec/PhabricatorDataCacheSpec.php b/src/applications/cache/spec/PhabricatorDataCacheSpec.php index 89fbcd4775..384bb78ca8 100644 --- a/src/applications/cache/spec/PhabricatorDataCacheSpec.php +++ b/src/applications/cache/spec/PhabricatorDataCacheSpec.php @@ -49,7 +49,7 @@ final class PhabricatorDataCacheSpec extends PhabricatorCacheSpec { if (ini_get('apc.enabled')) { $this->setIsEnabled(true); - $this->getAPCCommonSpec(); + $this->initAPCCommonSpec(); } else { $this->setIsEnabled(false); $this->raiseEnableAPCIssue(); @@ -72,7 +72,7 @@ final class PhabricatorDataCacheSpec extends PhabricatorCacheSpec { } } - private function getAPCCommonSpec() { + private function initAPCCommonSpec() { $mem = apc_sma_info(); $this->setTotalMemory($mem['num_seg'] * $mem['seg_size']);