Skip to content

Commit

Permalink
Merge pull request #19 from RinkeRaven/patch-1
Browse files Browse the repository at this point in the history
changed default limit from 500 to 100 (fixes #18)
  • Loading branch information
KAllan357 authored Feb 27, 2019
2 parents 66e374e + 14afb00 commit cb63750
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_zendesk_chat/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def sync(self, ctx):
while True:
params = {
"since_id": since_id,
"limit": ctx.config.get("agents_page_limit", 500),
"limit": ctx.config.get("agents_page_limit", 100),
}
page = ctx.client.request(self.tap_stream_id, params)
if not page:
Expand Down

0 comments on commit cb63750

Please sign in to comment.