Anton Buyskikh
08/06/2024, 3:52 PMtask_inputs
field of task_run
table of the DB. But instead I find only {"name": [{"input_type": "task_run", "id": "c8ab67da-0eda-4a0d-9fa8-fb89232adbfe"}]}
in that field. Are task inputs logged somewhere else? Using prefect v2.19.9.Anton Buyskikh
08/06/2024, 3:52 PMfrom prefect import flow, task
@task
def get_string() -> str:
return "World"
@task
def say_hello(name: str) -> None:
print(f"Hello, {name}!")
@flow(log_prints=True)
def min_flow() -> None:
say_hello(get_string())
if __name__ == "__main__":
min_flow()
Nate
08/06/2024, 4:08 PMbool
and int
values since they can't really be sensitive by themselvesNate
08/06/2024, 4:09 PMNate
08/06/2024, 4:11 PMAnton Buyskikh
08/06/2024, 7:09 PM