Anna Geller

Results 784 comments of 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 🎉 ![image](https://user-images.githubusercontent.com/86264395/183520245-39809bf6-b65c-4776-857e-d9a563c748f8.png) ![image](https://user-images.githubusercontent.com/86264395/183520302-2a7cf197-2174-4cdc-a1b2-7f9ce35fc98d.png) 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 ![image](https://user-images.githubusercontent.com/86264395/183266094-709f5f06-b043-4317-b712-9c9c6b608a9f.png) 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 ![image](https://user-images.githubusercontent.com/86264395/183266246-3f935642-4ade-4799-9d8e-6ff3b1257a64.png)

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) #...