Skip to content

Commit

Permalink
Increase default docker limits (#11788)
Browse files Browse the repository at this point in the history
I keep hitting memory limits locally.
I wonder if we should just use the "Determine limits dynamically" in
dev.
I'm not sure why that isn't better than hard limits?
  • Loading branch information
ericholscher authored Nov 21, 2024
1 parent b9064ab commit e0f17cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,8 @@ def DOCKER_LIMITS(self):
"""
# Our normal default
limits = {
"memory": "1g",
"time": 600,
"memory": "2g",
"time": 900,
}

# Only run on our servers
Expand Down

0 comments on commit e0f17cc

Please sign in to comment.