Skip to content

Commit

Permalink
char limit check fails for carrier transport
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Dec 22, 2023
1 parent dede4c0 commit 561bf54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mpcontribs-client/mpcontribs/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ def _split_query(
line_len = len(",".join(v).encode("utf-8"))

while line_len > 3800:
per_page = int(0.9 * per_page)
per_page = int(0.8 * per_page)
vv = v[:per_page]
line_len = len(",".join(vv).encode("utf-8"))

Expand Down

0 comments on commit 561bf54

Please sign in to comment.