Skip to content

Commit e74b501

Browse files
committed
Remove MMFiles only options in replication
1 parent 31837b9 commit e74b501

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

arango/replication.py

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,7 @@ def response_handler(resp):
149149
def dump(self,
150150
collection,
151151
batch_id=None,
152-
lower=None,
153-
upper=None,
154152
chunk_size=None,
155-
include_system=None,
156-
ticks=None,
157-
flush=None,
158153
deserialize=False):
159154
"""Return the events data of one collection.
160155
@@ -165,19 +160,6 @@ def dump(self,
165160
:type chunk_size: int
166161
:param batch_id: Batch ID. For RocksDB engine only.
167162
:type batch_id: str | unicode
168-
:param lower: Lower bound tick value for results. For MMFiles only.
169-
:type lower: str | unicode
170-
:param upper: Upper bound tick value for results. For MMFiles only.
171-
:type upper: str | unicode
172-
:param include_system: Include system collections in the result. For
173-
MMFiles only. Default value is True.
174-
:type include_system: bool
175-
:param ticks: Whether to include tick values in the dump. For MMFiles
176-
only. Default value is True.
177-
:type ticks: bool
178-
:param flush: Whether to flush the WAL before dumping. Default value is
179-
True.
180-
:type flush: bool
181163
:param deserialize: Deserialize the response content. Default is False.
182164
:type deserialize: bool
183165
:return: Collection events data.
@@ -190,16 +172,6 @@ def dump(self,
190172
params['chunkSize'] = chunk_size
191173
if batch_id is not None:
192174
params['batchId'] = batch_id
193-
if lower is not None:
194-
params['from'] = lower
195-
if upper is not None:
196-
params['to'] = upper
197-
if include_system is not None:
198-
params['includeSystem'] = include_system
199-
if ticks is not None:
200-
params['ticks'] = ticks
201-
if flush is not None:
202-
params['flush '] = flush
203175

204176
request = Request(
205177
method='get',

0 commit comments

Comments
 (0)