Skip to content

Commit

Permalink
Revert default max submission size from 30MB to 300MB
Browse files Browse the repository at this point in the history
  • Loading branch information
Didayolo authored Dec 2, 2021
1 parent 8062731 commit 318361e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codalab/apps/web/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ class CompetitionPhase(models.Model):
color = models.CharField(max_length=24, choices=COLOR_CHOICES, blank=True, null=True)

max_submission_size = models.PositiveIntegerField(
default=30,
default=300,
validators=[
MaxValueValidator(10000),
MinValueValidator(0)
Expand Down

0 comments on commit 318361e

Please sign in to comment.