Hi Guys, I'm running into some interesting behavio...
# ask-community
m
Hi Guys, I'm running into some interesting behavior with dagit. I'm running v1.2.4 and implemented my own ComplexRepositoryData(RepositoryData) to support refresh of new jobs. When I execute dagit on my local, I see this:
Copy code
AttributeError: 'NoneType' object has no attribute 'items'
  File ".venv/lib/python3.8/site-packages/dagster/_grpc/server.py", line 529, in _get_serialized_external_repository_data
    external_repository_data_from_def(
  File ".venv/lib/python3.8/site-packages/dagster/_core/host_representation/external_data.py", line 1117, in external_repository_data_from_def
    for res_name, res_data in resource_datas.items()
The repo looks like:
Copy code
@repository
def my_repo() -> ComplexRepositoryData:
    return ComplexRepositoryData()
FWIW, I'm upgrading from 1.0.15 (hoping 1.2.4 solves some dagit refresh behavior I'm encountering with the complex repo) therefore I imagined I would see some breaking changes. Thanks!
🤖 1
d
Hi Matthieu - RepositoryData now has a get_top_level_resources abstract method, do you konw if your class implements that?
m
My class currently implements both
get_env_vars_by_top_level_resource
and
get_top_level_resources
but the functions are not implemented...
ah, returning empty {} solves this. okay will continue to play
d
return an empty dict from get_top_level_resources and i believe this will go away
yeah
🌈 1
m
lol ty