Downgrade rate limit to 200MB

This commit is contained in:
sabaimran 2024-08-25 15:26:27 -07:00
parent 439a2680fd
commit 6eb06e8626
2 changed files with 3 additions and 3 deletions

View file

@ -92,7 +92,7 @@ async def put_content(
incoming_entries_size_limit=10,
subscribed_incoming_entries_size_limit=75,
total_entries_size_limit=10,
subscribed_total_entries_size_limit=400,
subscribed_total_entries_size_limit=200,
)
),
):
@ -114,7 +114,7 @@ async def patch_content(
incoming_entries_size_limit=10,
subscribed_incoming_entries_size_limit=75,
total_entries_size_limit=10,
subscribed_total_entries_size_limit=400,
subscribed_total_entries_size_limit=200,
)
),
):

View file

@ -500,7 +500,7 @@ def get_sample_files_data():
def get_big_size_sample_files_data():
# a string of approximately 100 MB
big_text = "a" * (400 * 1024 * 1024)
big_text = "a" * (200 * 1024 * 1024)
return [
(
"files",