We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa193da commit a13572bCopy full SHA for a13572b
src/app.py
@@ -4532,7 +4532,7 @@ def delete_cache(id):
4532
4533
# We only use uuid in the cache key acorss all the cache types
4534
cache_keys = []
4535
- for uuid in ([entity_uuid] + children_uuids + collection_associated_uuids + collection_uuids + pubication_associated_collection_dict['uuid']):
+ for uuid in ([entity_uuid] + children_uuids + collection_associated_uuids + collection_uuids + [pubication_associated_collection_dict['uuid']]):
4536
cache_keys.append(f'{MEMCACHED_PREFIX}_neo4j_{uuid}')
4537
cache_keys.append(f'{MEMCACHED_PREFIX}_complete_{uuid}')
4538
cache_keys.append(f'{MEMCACHED_PREFIX}_normalized_{uuid}')
0 commit comments