We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ee79c2 commit 4523aebCopy full SHA for 4523aeb
squarecloud/utils.py
@@ -21,8 +21,8 @@ def __init__(
21
) -> None:
22
if version not in ('latest', 'recommended'):
23
raise ValueError('Invalid version')
24
- if memory < 100:
25
- raise ValueError('Memory must be greater than 100MB')
+ if memory < 256:
+ raise ValueError('Memory must be greater than 256MB')
26
elif memory < 512 and subdomain:
27
raise ValueError('Websites memory must be grater than 512MB')
28
self.display_name = display_name
0 commit comments