With 0.14.6 it seems like something changed w.r.t....
# ask-community
k
With 0.14.6 it seems like something changed w.r.t. type checking for the dagster List type.
dagster.check.ParameterCheckError: Param "dagster_type" is not one of ['DagsterType', 'type']. Got <dagster.core.types.dagster_type.DagsterListApi object at 0x7fc57b954850> which is type <class 'dagster.core.types.dagster_type.DagsterListApi'>.
Relevant code tripping this up, which worked fine with 0.14.3:
@op(required_resource_keys={'tokenbase_client'},
ins={'itin_list': In(dagster_type=List)},
Is this expected?
a
an unintentional regression, i expect it will be fixed in this weeks release @sean
👍 1
👀 1
a
I found the same issue in 0.14.5 with Dicts https://github.com/dagster-io/dagster/issues/7212
👍 1
k
Cheers. I will roll back for now and roll forward when patched!
m
Just wanted to report I ran into the same issue, tried with
0.14.6
and that didn't work for me either, though rolling back to
0.14.3
seems to have solved it
s
For anyone who ran into this, the fix for this is merged and will be included in this Thursday’s release.
m
Thanks for the update! 0.14.7 did fix it for me thank you 🙂