From cf3dfc62c0ba142a73787f063173165660d3da8d Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont Date: Thu, 17 Mar 2016 17:44:45 +0100 Subject: [PATCH] storage_utils: store user uuids in proper cache --- swh/lister/github/storage_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swh/lister/github/storage_utils.py b/swh/lister/github/storage_utils.py index 8b4a53e..e08b1a0 100644 --- a/swh/lister/github/storage_utils.py +++ b/swh/lister/github/storage_utils.py @@ -115,7 +115,7 @@ def user_last_modified(storage, id): }]))[0] if entity['uuid']: - cache.set_repo(id, entity['uuid']) + cache.set_user(id, entity['uuid']) updated_at = entity.get('lister_metadata', {}).get('updated_at')