Kyle Gobel
10/27/2022, 1:11 AMassets = with_resources(
load_assets_from_airbyte_project(project_dir=/my/ab/proj),
{
"airbyte": airbyte_resource.configured({ "host": "localhost", "port": "8000", })
},
)
looks like the load assets returns a CacheableAssetsDefinition
which isn't iterablerex
10/27/2022, 1:15 AMload_assets_from_airbyte_project(project_dir=/my/ab/proj)
as as list:
assets = with_resources(
[load_assets_from_airbyte_project(project_dir=/my/ab/proj)],
{
"airbyte": airbyte_resource.configured({ "host": "localhost", "port": "8000", })
},
)
The PR that fixed that is here: https://github.com/dagster-io/dagster/pull/10132Kyle Gobel
10/27/2022, 1:17 AM