diff options
Diffstat (limited to 'geo-replication/syncdaemon/libgfchangelog.py')
-rw-r--r-- | geo-replication/syncdaemon/libgfchangelog.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/geo-replication/syncdaemon/libgfchangelog.py b/geo-replication/syncdaemon/libgfchangelog.py index 099867a511a..e6bfbefd0a6 100644 --- a/geo-replication/syncdaemon/libgfchangelog.py +++ b/geo-replication/syncdaemon/libgfchangelog.py @@ -85,8 +85,9 @@ class Changes(object): return ret @classmethod - def cl_history_changelog(cls, changelog_path, start, end): - ret = cls._get_api('gf_history_changelog')(changelog_path, start, end) + def cl_history_changelog(cls, changelog_path, start, end, num_parallel): + ret = cls._get_api('gf_history_changelog')(changelog_path, start, end, + num_parallel) if ret == -1: cls.raise_changelog_err() |