You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The cache mechanism to store every decision from LAPI/CAPI. Symfony Cache component powered.
@@ -826,7 +826,7 @@ public function prune(): bool
826
826
*/
827
827
privatefunctionsetCustomErrorHandler(): void
828
828
{
829
-
if ($this->adapterinstanceofMemcachedAdapter) {
829
+
if ($this->adapterinstanceofMemcachedTagAwareAdapter) {
830
830
set_error_handler(function ($errno, $errstr) {
831
831
thrownewBouncerException("Error when connecting to Memcached. (Error level: $errno) Please fix the Memcached DSN or select another cache technology. Original message was: $errstr");
832
832
});
@@ -838,7 +838,7 @@ private function setCustomErrorHandler(): void
838
838
* */
839
839
privatefunctionunsetCustomErrorHandler(): void
840
840
{
841
-
if ($this->adapterinstanceofMemcachedAdapter) {
841
+
if ($this->adapterinstanceofMemcachedTagAwareAdapter) {
0 commit comments