summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2017-12-18 22:08:32 +0100
committerGitHub <noreply@github.com>2017-12-18 22:08:32 +0100
commita84d11de7bf9e26f2932e362435921556eb80560 (patch)
tree56e97e5ab011a3322cf09625b3196905d51e0740 /core/Command
parent60297ed7e0ef5266e766b54c2dbde1e494b27141 (diff)
parent094d41937a5889e4c545ecf575aa1acbcf489a55 (diff)
downloadnextcloud-server-a84d11de7bf9e26f2932e362435921556eb80560.tar.gz
nextcloud-server-a84d11de7bf9e26f2932e362435921556eb80560.zip
Merge pull request #7531 from nextcloud/ldap/createdistributed
don't use deprecated method for requesting memcache
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Maintenance/UpdateTheme.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Maintenance/UpdateTheme.php b/core/Command/Maintenance/UpdateTheme.php
index cf015b82635..2ab66a4ce75 100644
--- a/core/Command/Maintenance/UpdateTheme.php
+++ b/core/Command/Maintenance/UpdateTheme.php
@@ -57,7 +57,7 @@ class UpdateTheme extends UpdateJS {
parent::execute($input, $output);
// cleanup image cache
- $c = $this->cacheFactory->create('imagePath');
+ $c = $this->cacheFactory->createDistributed('imagePath');
$c->clear('');
$output->writeln('<info>Image cache cleared');
}