analytics
09/16/2024, 3:41 PMNate
09/16/2024, 3:58 PManalytics
09/16/2024, 4:12 PMNate
09/16/2024, 4:24 PManalytics
09/16/2024, 4:33 PManalytics
09/16/2024, 4:34 PManalytics
09/16/2024, 4:35 PMNate
09/16/2024, 4:43 PMoverride
just refers to overriding the default as specified by your flow function signature
as in, if you have
@flow
def foo(x: int = 42): ...
foo.from_source(...).deploy(..., parameters=dict(x=43))
then if you just do quick run, this deployment of foo
will override the default for the flow (ie x=42) and you'll end up with x=43 by default. but if you do Custom Run, then you can always select whichever custom param values you want for that run
does that answer your question?analytics
09/16/2024, 7:03 PM