Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

up size limit for data in submission_file_types #578

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ramp-database/ramp_database/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def setup_files_extension_type(session):
submission_file_types = [
("code", True, 10**5),
("text", True, 10**5),
("data", False, 10**8),
("data", False, 10**9),
]
for name, is_editable, max_size in submission_file_types:
add_submission_file_type(session, name, is_editable, max_size)
Expand Down