Skip to content

Commit

Permalink
Fix: 128 MB of RAM was too small
Browse files Browse the repository at this point in the history
A program could not run `pip freeze` with so little memory.

Solution: Bump the default memory to 256 MB.
  • Loading branch information
hoh committed Sep 26, 2023
1 parent fea8757 commit 30cc9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aleph/sdk/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Settings(BaseSettings):
DEFAULT_RUNTIME_ID: str = (
"bd79839bf96e595a06da5ac0b6ba51dea6f7e2591bb913deccded04d831d29f4"
)
DEFAULT_VM_MEMORY: int = 128
DEFAULT_VM_MEMORY: int = 256
DEFAULT_VM_VCPUS: int = 1
DEFAULT_VM_TIMEOUT: float = 30.0

Expand Down

0 comments on commit 30cc9c6

Please sign in to comment.