Page MenuHomeElementl

Clean up marshalling of multiple inputs
ClosedPublic

Authored by max on Jul 7 2021, 10:46 PM.
Tags
None
Referenced Files
F2894008: D8752.diff
Sun, Mar 26, 10:11 AM
Unknown Object (File)
Fri, Mar 10, 9:01 PM
Unknown Object (File)
Mon, Mar 6, 5:12 PM
Unknown Object (File)
Feb 22 2023, 4:05 PM
Unknown Object (File)
Feb 11 2023, 10:34 PM
Unknown Object (File)
Feb 11 2023, 7:04 PM
Unknown Object (File)
Feb 10 2023, 9:46 AM
Unknown Object (File)
Feb 9 2023, 6:59 PM
Subscribers
None

Diff Detail

Repository
R1 dagster
Branch
dagstermill-fixes
Lint
Lint Passed
Unit
No Test Coverage

Event Timeline

assuming the test failed before and works now, im good with this

python_modules/libraries/dagstermill/dagstermill/solids.py
143

this same path is used for read and write? surprised its not in two callsites

This revision is now accepted and ready to land.Jul 8 2021, 4:49 PM
python_modules/libraries/dagstermill/dagstermill/solids.py
143

read:

for (output_name, output_def) in step_execution_context.solid_def.output_dict.items():
       data_dict = output_nb.scraps.data_dict
       if output_name in data_dict:
           value = read_value(output_def.dagster_type, data_dict[output_name])

           yield Output(value, output_name)
This revision was automatically updated to reflect the committed changes.