A fork of the Cocoon PDS but being made more distributed.
11

Configure Feed

Select the types of activity you want to include in your feed.

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
(Apr 29, 2025, 5:49 PM -0700) b2071206 ee7ced39

+4
+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,