Hi, I'm also running into a new error when running...
# prefect-cloud
a
Hi, I'm also running into a new error when running a deployment in prefect cloud:
Copy code
Flow run could not be submitted to infrastructure: Parameter validation failed:
Invalid type for parameter overrides.memory, value: 0, type: <class 'int'>, valid types: <class 'str'>
EDIT: This was caused by accidentally setting the ECS work pool memory to zero. Once I set the value back, this was resolved.
1
n
hi @Anthony W - im curious about this can you share how you set your overrides before and after resolving this?
a
The memory field was accidentally set to 0. Setting it back to 2048 fixed it
n
thank you! sorry to be so pedantic, but when you had it set to zero did you have a literal
int
like
0
or like
"0"
?
a
literal int 0
n
thank you!