Skip to content

Commit 2c0de38

Browse files
authored
Merge pull request #7618 from readthedocs/humitos/docker-mem-limit
2 parents bad113b + d93563d commit 2c0de38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readthedocs/settings/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ def _get_docker_memory_limit(self):
495495
"free -m | awk '/^Mem:/{print $2}'",
496496
shell=True,
497497
))
498-
return total_memory, round(total_memory - 750, -2)
498+
return total_memory, round(total_memory - 1000, -2)
499499
except ValueError:
500500
# On systems without a `free` command it will return a string to
501501
# int and raise a ValueError

0 commit comments

Comments
 (0)