Mahendra Zadafiya
03/03/2023, 9:42 AMwith Flow("floww_3.5", storage=Azure(container="prefect-flows")) as flow:
input_folder_path = Parameter("input_folder_path", default='demo_path')
utput_folder_path = Parameter("output_folder_path", default='')
.......
if __name__ == "__main__":
client = Client()
client.create_project(project_name="floww_3")
project_path = str(Path.cwd())
flow.run_config = KubernetesRun(.....)
flow.executor = LocalDaskExecutor()
flow.register(add_default_labels=False, project_name="floww_3")
Every time I execute above code it's getting registered properly without any error and version is also getting upgraded.
But if I change default values of Parameter it's not getting updated
Could someone please help with it?Jenny
03/03/2023, 11:50 AM