summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib/Migration/UUIDFixGroup.php
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2017-02-17 20:06:25 +0100
committerArthur Schiwon <blizzz@arthur-schiwon.de>2017-02-17 20:06:25 +0100
commit42ddb12fd936523583c3d0231bb6ab5c901d8084 (patch)
treeec2d9865f4efbfff1602e73837810d70636bc43e /apps/user_ldap/lib/Migration/UUIDFixGroup.php
parent497ee3e3e64a07c1684f4ec87aa7621d743c37e6 (diff)
downloadnextcloud-server-42ddb12fd936523583c3d0231bb6ab5c901d8084.tar.gz
nextcloud-server-42ddb12fd936523583c3d0231bb6ab5c901d8084.zip
Background jobs can take 4k of characters only. We find a good batch size.
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/user_ldap/lib/Migration/UUIDFixGroup.php')
-rw-r--r--apps/user_ldap/lib/Migration/UUIDFixGroup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/Migration/UUIDFixGroup.php b/apps/user_ldap/lib/Migration/UUIDFixGroup.php
index ae84e668871..cbc38366984 100644
--- a/apps/user_ldap/lib/Migration/UUIDFixGroup.php
+++ b/apps/user_ldap/lib/Migration/UUIDFixGroup.php
@@ -24,13 +24,13 @@
namespace OCA\User_LDAP\Migration;
use OCA\User_LDAP\Helper;
-use OCA\User_LDAP\ILDAPWrapper;
+use OCA\User_LDAP\LDAP;
use OCA\User_LDAP\Mapping\GroupMapping;
use OCA\User_LDAP\User_Proxy;
use OCP\IConfig;
class UUIDFixGroup extends UUIDFix {
- public function __construct(GroupMapping $mapper, ILDAPWrapper $ldap, IConfig $config, Helper $helper) {
+ public function __construct(GroupMapping $mapper, LDAP $ldap, IConfig $config, Helper $helper) {
$this->mapper = $mapper;
$this->proxy = new User_Proxy($helper->getServerConfigurationPrefixes(true), $ldap, $config);
}