diff options
author | Maksim Sukharev <antreesy.web@gmail.com> | 2024-06-11 11:15:59 +0200 |
---|---|---|
committer | Maksim Sukharev <antreesy.web@gmail.com> | 2024-06-11 11:15:59 +0200 |
commit | 5f2db72f9404856ea6b8949059976f097978055a (patch) | |
tree | 4912d356cca4d189d9ab34d4490f269ff6f78910 | |
parent | afeac8f6cb4719de5ef9f4fa7ef85cedaf2d5907 (diff) | |
download | nextcloud-server-patch/61084/disable-clear-cache.tar.gz nextcloud-server-patch/61084/disable-clear-cache.zip |
patch: disable clearCache on user deletionpatch/61084/disable-clear-cache
-rw-r--r-- | apps/user_ldap/lib/User_LDAP.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/User_LDAP.php b/apps/user_ldap/lib/User_LDAP.php index 772b2f46095..cd83cfe3972 100644 --- a/apps/user_ldap/lib/User_LDAP.php +++ b/apps/user_ldap/lib/User_LDAP.php @@ -419,7 +419,7 @@ class User_LDAP extends BackendUtility implements IUserBackend, UserInterface, I $this->access->getUserMapper()->unmap($uid); // we don't emit unassign signals here, since it is implicit to delete signals fired from core $this->access->userManager->invalidate($uid); - $this->access->connection->clearCache(); + # $this->access->connection->clearCache(); return true; } |