freezing-mouse-40688
11/23/2023, 1:08 AMsimple_wf_lp_fixed_inputs = LaunchPlan.get_or_create(
name="fixed_inputs", workflow=simple_wf, fixed_inputs={"x": [-3, 0, 3]}
)
But, when I run simple_wf_lp_fixed_inputs(x = [3,3,1], y= [1,2,3])
Not only it works (I was expecting an error being thrown) but it also gives me modified results as if fixed inputs didn't matter at all.
Please guide.freezing-mouse-40688
11/23/2023, 1:09 AMtall-lock-23197
pyflyte register launch_plan.py
and try using the fixed_inputs
launch plan while triggering the workflow? you won't be able to provide x
.freezing-mouse-40688
11/23/2023, 7:34 AMtall-lock-23197