From 6e59f9a6930e56dafc2baaa1e6b0d4fc8a6c7fdc Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 23 Jan 2025 11:41:39 +0100 Subject: [PATCH] fix: copypasta Co-authored-by: Julien Veyssier Signed-off-by: Marcel Klehr --- lib/private/TaskProcessing/Manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/TaskProcessing/Manager.php b/lib/private/TaskProcessing/Manager.php index 439b8c3c746..10224584b43 100644 --- a/lib/private/TaskProcessing/Manager.php +++ b/lib/private/TaskProcessing/Manager.php @@ -101,7 +101,7 @@ class Manager implements IManager { ) { $this->appData = $appDataFactory->get('core'); $this->cache = $cacheFactory->createLocal('task_processing::'); - $this->cache = $cacheFactory->createDistributed('task_processing::'); + $this->distributedCache = $cacheFactory->createDistributed('task_processing::'); }