Anna Geller
Anna Geller
This is awesome, thanks so much Michael! @chrisguidry yes correct, you would use this command to get the token which can be used as password, the username is always AWS:`docker...
This works 🎉   QAed with S3 storage block and Dockerfile that does nothing but adding s3fs dependency: ``` FROM prefecthq/prefect:dev-python3.9 RUN pip install s3fs ```
QA looks really good so far. I reported some feedback to Chris directly. Pasting some QA commands if anyone else wants to use them: ```bash # QA of overrides -...
When a deployment is created without default parameters and the user wants to set parameters from the UI, it doesn't work for parameters of the type list. ```python from typing...
Sorry for the late response @madkinsz - I did that as shown in the image below and despite this method being insecure and despite having logged in successfully, the same...
Yes, I can push and pull my ECR image with docker push and docker pull. But the agent cannot; something might be wrong with setting up the proper URL for...
@madkinsz I cross-checked on EC2 today and confirmed this is a problem with the Prefect agent  the EC2 instance has IAM role with access to ECR and also is...
and I can confirm that this issue is only with private registries such as ECR - using the base image from Prefect on the same EC2 instance works fine 
Why did you tag me specifically for this @NoamGit? :) I'm no async expert. Could you try the same in the latest version and this example? ```python import asyncio from...
And your example works if you turn the task to async: ```python import asyncio from prefect import task, flow @task async def print_values(values): for value in values: await asyncio.sleep(1) #...