Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Commit

Permalink
correction: reduce chunksize to 1MB
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Armbruster committed Jun 11, 2018
1 parent 8c91f6e commit 429d250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eidangservices/federator/server/task.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ class RawDownloadTask(TaskBase):

LOGGER = 'flask.app.federator.task_download_raw'

CHUNK_SIZE = 1024 * 1024 * 20
CHUNK_SIZE = 1024 * 1024

def __init__(self, request_handler, **kwargs):
super().__init__(self.LOGGER)
Expand Down

0 comments on commit 429d250

Please sign in to comment.