:rotating_light: Prefect flow doesn’t update the l...
# ask-community
d
🚨 Prefect flow doesn’t update the latest parameters list🚨 I’ve been utilizing a Prefect flow to process a substantial volume of data, featuring two parameters named say “Parameter A” and “Parameter B,” both being integers. Recently, I made modifications to the flow, specifically removing “Parameter B.” Despite this change, when attempting to manually run the flow through the Prefect dashboard, I still observe both parameters listed. The flow has indeed been updated to include only “Parameter A.” Why is the previously removed parameter still visible in the Prefect UI, and what steps can be taken to resolve this issue?
k
If you've changed signature of your flow function by removing a parameter, you'll need to deploy it again, since it's during the deployment process that the presence of parameters and their defaults are detected.
d
@Kevin Grismore I agree, the flow has been already deployed and the old parameter still exists