From cbb8df7431008c4d0446b78777e45e37189ed226 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 22 Aug 2019 15:50:47 +0100 Subject: [PATCH] When profile details are changed update the actor cache and cache in memory --- daemon.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/daemon.py b/daemon.py index 5df2a2a6d..0c4568474 100644 --- a/daemon.py +++ b/daemon.py @@ -2259,6 +2259,11 @@ class PubServer(BaseHTTPRequestHandler): if actorChanged: with open(actorFilename, 'w') as fp: commentjson.dump(actorJson, fp, indent=4, sort_keys=False) + # also copy to the actors cache and personCache in memory + self.server.personCache[actorJson['id']]=actorJson + actorCacheFilename=self.server.baseDir+'/cache/actors/'+actorJson['id'].replace('/','#')+'.json' + with open(actorCacheFilename, 'w') as fp: + commentjson.dump(actorJson, fp, indent=4, sort_keys=False) # send actor update to followers updateActorJson={ 'type': 'Update',