Merge pull request #4070 from pypeclub/bugfix/publisher_asset_cache

Publisher: Fix cache of asset docs
This commit is contained in:
Jakub Trllo 2022-11-04 21:45:26 +01:00 committed by GitHub
commit 5472201fff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,9 +90,9 @@ class AssetDocsCache:
return
project_name = self._controller.project_name
asset_docs = get_assets(
asset_docs = list(get_assets(
project_name, fields=self.projection.keys()
)
))
asset_docs_by_name = {}
task_names_by_asset_name = {}
for asset_doc in asset_docs: