Skip to content

Commit

Permalink
Merge pull request #27 from Matatika/26-bad-gateway
Browse files Browse the repository at this point in the history
fix: Prevent `502 Bad Gateway` when paginating for top items streams
  • Loading branch information
ReubenFrankel authored Feb 26, 2024
2 parents 2cf56be + 6618d35 commit 16ecef0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_spotify/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class _UserTopItemsStream(_RankStream, _SyncedAtStream, SpotifyStream):
"""Define user top items stream."""

time_range = "medium_term"
limit = 49
limit = 50

def get_url_params(self, context, next_page_token):
params = super().get_url_params(context, next_page_token)
Expand Down

0 comments on commit 16ecef0

Please sign in to comment.