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

Issue #3462917: DrupalApcCache sets the prefix for the APCu keys it use using...

Issue #3462917: DrupalApcCache sets the prefix for the APCu keys it use using the value returned by drupal_valid_test_ua() or $GLOBALS['drupal_test_info']['test_run_id']
parent 418e3ee5
No related branches found
No related tags found
1 merge request!19Issue #3462917: DrupalApcCache sets the prefix for the APCu keys it use using the value returned by drupal_valid_test_ua() or $GLOBALS['drupal_test_info']['test_run_id']
Pipeline #230428 passed
......@@ -116,11 +116,8 @@ public function __construct($bin) {
if ($test_prefix = drupal_valid_test_ua()) {
$prefix = $test_prefix . '::' . $prefix;
}
elseif (isset($GLOBALS['drupal_test_info']['test_run_id'])) {
$prefix = $GLOBALS['drupal_test_info']['test_run_id'] . '::' . $prefix;
}
$this->prefix = "apc_$prefix";
$this->prefix = "apc_cache_$prefix";
}
/**
......
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