Skip to content

Commit a13572b

Browse files
committed
Use list instead of str
1 parent fa193da commit a13572b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4532,7 +4532,7 @@ def delete_cache(id):
45324532

45334533
# We only use uuid in the cache key acorss all the cache types
45344534
cache_keys = []
4535-
for uuid in ([entity_uuid] + children_uuids + collection_associated_uuids + collection_uuids + pubication_associated_collection_dict['uuid']):
4535+
for uuid in ([entity_uuid] + children_uuids + collection_associated_uuids + collection_uuids + [pubication_associated_collection_dict['uuid']]):
45364536
cache_keys.append(f'{MEMCACHED_PREFIX}_neo4j_{uuid}')
45374537
cache_keys.append(f'{MEMCACHED_PREFIX}_complete_{uuid}')
45384538
cache_keys.append(f'{MEMCACHED_PREFIX}_normalized_{uuid}')

0 commit comments

Comments
 (0)