https://prefect.io logo
Title
j

Jens

01/19/2023, 9:28 AM
Hey Community 🙂 I have one question. I have the folowing Flow() + Task()
@task()
def test_task(some_param: str):
    print(some_param)

@flow()
def test_flow():
    test_Task()
If I run this code and check the FlowRun inside the UI (Orion) I only see the given parameters inside the Flow but not inside the Task If I check the Radar I see test_flow -----> test_task. If I click on the test_flow under the tab parameters I see { "some_param": "blahblah"} but if I click on the test_task and go to the "Task Inputs" tab I see { "some_param": []} Why I can't se the parameters which hand over from test_flow to test_task?
a

Anna Geller

01/19/2023, 1:34 PM
you mean that you only see parameter overrides?
j

Jens

01/25/2023, 1:11 PM
Yes :)