Skip to content
Snippets Groups Projects
Verified Commit 36b6a4f1 authored by Alberto Paderno's avatar Alberto Paderno
Browse files

Issue #2845998: Undefined variable $apc_node in DrupalAPCCache::remoteFlush()

parent 61cc2268
No related branches found
No related tags found
1 merge request!4Issue #2845998: Undefined variable $apc_node in DrupalAPCCache::remoteFlush()
Pipeline #224863 passed
......@@ -414,10 +414,10 @@ public static function remoteFlush() {
}
}
elseif (!$response['success']) {
drush_log('APC could not flush cache(s) because ' . $apc_node . ' returned code ' . $response['message'], 'error');
drush_log('APC could not flush cache(s) because ' . $uri . ' returned code ' . $response['message'], 'error');
}
else {
drush_log("APC-Remote $apc_node: {$response['message']}", 'success');
drush_log("APC-Remote $uri: {$response['message']}", 'success');
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment