Skip to content

Commit 6fcf653

Browse files
authored
Merge pull request #175 from niwatolli3/fix-next-issue-filter
fix over 100 tickets problem in issue.filter
2 parents 465205b + f85ee06 commit 6fcf653

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redminelib/engines/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def bulk_request(self, method, url, container, **params):
9999
for num in range(limit - self.chunk, 0, -self.chunk):
100100
offset += self.chunk
101101
limit -= self.chunk
102-
bulk_params.append({'offset': offset, 'limit': limit})
102+
bulk_params.append(dict(params, **{'offset': offset, 'limit': limit}))
103103

104104
# If we need to make just one more request, there's no point in async
105105
if len(bulk_params) == 1:

0 commit comments

Comments
 (0)