We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f06137f commit e36fe17Copy full SHA for e36fe17
src/app.py
@@ -5409,7 +5409,7 @@ def delete_cache(entity_uuid, entity_type):
5409
publication_collection_dict = schema_neo4j_queries.get_publication_associated_collection(neo4j_driver_instance, entity_uuid)
5410
5411
# We only use uuid in the cache key acorss all the cache types
5412
- uuids_list = [entity_uuid] + descendant_uuids + collection_dataset_uuids + upload_dataset_uuids + collection_uuids + collection_publication_uuid
+ uuids_list = [entity_uuid] + descendant_uuids + collection_dataset_uuids + upload_dataset_uuids + collection_uuids + [collection_publication_uuid]
5413
5414
# Add to the list if the target dataset has linked upload
5415
if dataset_upload_dict:
0 commit comments