Skip to content

Commit fca4932

Browse files
committed
Fix: 128 MB of RAM was too small
A program could not run `pip freeze` with so little memory. Solution: Bump the default memory to 256 MB.
1 parent fea8757 commit fca4932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/aleph/sdk/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Settings(BaseSettings):
3232
DEFAULT_RUNTIME_ID: str = (
3333
"bd79839bf96e595a06da5ac0b6ba51dea6f7e2591bb913deccded04d831d29f4"
3434
)
35-
DEFAULT_VM_MEMORY: int = 128
35+
DEFAULT_VM_MEMORY: int = 256
3636
DEFAULT_VM_VCPUS: int = 1
3737
DEFAULT_VM_TIMEOUT: float = 30.0
3838

0 commit comments

Comments
 (0)