Samuel Kohlleffel
08/12/2021, 12:38 PMflow.run(parameters=dict(rebuild="true"))
but when I try to run
python -m python.module --param rebuild=true
the parameter is not recognized and it runs the flow with the default value. What am I doing wrong here?Zanie
prefect run -m your.flow.module --param rebuild=true
instead of python
Samuel Kohlleffel
08/12/2021, 1:09 PM