diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-12-24 17:15:11 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-12-24 17:15:11 +0100 |
commit | 2e72d7e1baa01ea0476435b515606f73a3387e8b (patch) | |
tree | c968377f517148abd30bd619fd50b1db9ca0b850 /pykolab/cli/cmd_sync.py | |
parent | a502a804cca9114b6c09e25cf81affbbda2b81a1 (diff) | |
download | pykolab-2e72d7e1baa01ea0476435b515606f73a3387e8b.tar.gz |
Use the new no-persistent-search call to synchronize
Diffstat (limited to 'pykolab/cli/cmd_sync.py')
-rw-r--r-- | pykolab/cli/cmd_sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/cli/cmd_sync.py b/pykolab/cli/cmd_sync.py index 4ac675a..8beef3d 100644 --- a/pykolab/cli/cmd_sync.py +++ b/pykolab/cli/cmd_sync.py @@ -51,7 +51,7 @@ def execute(*args, **kw): log.debug(_("Running for domain %s") % (primary_domain), level=8) auth.connect(primary_domain) start_time = time.time() - auth.synchronize() + auth.synchronize(mode='_paged_search') end_time = time.time() log.info(_("Synchronizing users for %s took %d seconds") |