An atproto PDS written in Go

clear DID cache entry on PDS after identity.updateHandle (#10)

this ensures that describeRepo gives us the right did doc after we make
an updateHandle call -- we emit an #identity guy on the event stream so we
might as well bust our own cache as well as everybody else's

ref bluesky-social/atproto#3393

authored by charlotte ✨ and committed by GitHub b2071206 ee7ced39

Changed files
+4
server
+4
server/handle_identity_update_handle.go
··· 81 81 } 82 82 } 83 83 84 + if err := s.passport.BustDoc(context.TODO(), repo.Repo.Did); err != nil { 85 + s.logger.Warn("error busting did doc", "error", err) 86 + } 87 + 84 88 s.evtman.AddEvent(context.TODO(), &events.XRPCStreamEvent{ 85 89 RepoHandle: &atproto.SyncSubscribeRepos_Handle{ 86 90 Did: repo.Repo.Did,