Skip to content

Commit

Permalink
Merge pull request #158 from houqp/houqp-master
Browse files Browse the repository at this point in the history
cap code sync size at 100MB
  • Loading branch information
houqp authored Jan 11, 2018
2 parents 2857dc7 + 6b669e0 commit adb2a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion floyd/client/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ModuleClient(FloydHttpClient):
Client to interact with modules api
"""

MAX_UPLOAD_SIZE = 1024 * 1024 * 150
MAX_UPLOAD_SIZE = 1024 * 1024 * 100

def __init__(self):
self.url = "/modules/"
Expand Down

0 comments on commit adb2a20

Please sign in to comment.