Question regarding a deployment's default paramete...
# ask-community
d
Question regarding a deployment's default parameters. If I run a deployment with
run_deployment
, are only the parameters I submit overridden, or are all parameters overridden and any not explicitly passed fall back on the flow function's defaults?
1
n
hi @Dominic Tarro - it should be the same as calling a python function in the sense that you'll need to pass any args that dont have defaults, and any that you do pass will be used instead of the defaults
👍 1
d
Okay, for clarity since I didn't phrase my question well and so I don't start a fire. If my defaults on the deployment are {"a": 1, "b": 2} and I pass {"a": 2}, the args passed to the flow run are {"a": 2, "b": 2}?
🙌 1
n
yep!
❤️ 1