Gunther Wallach
07/25/2022, 5:47 PMValueError: Flow could not be deserialized successfully. Error was: ValueError('A task with the slug "Parameter" already exists in this flow.')
This shows up after the step:
[2022-07-25 17:27:11-0700] INFO - prefect.Docker | Pushing image to the registry..
Parameters are currently in their own params.py file, and are referenced in the main flow file with:
import <main_directory>.tasks.params as params
<param_name> = Parameter("")
So, you cannot leave parameters blank and register the flow.Bianca Hoch
07/25/2022, 10:31 PM