(destinations []gomatrixserverlib.ServerName)
| 641 | } |
| 642 | |
| 643 | func (r *FederationInternalAPI) MarkServersAlive(destinations []gomatrixserverlib.ServerName) { |
| 644 | for _, srv := range destinations { |
| 645 | _ = r.db.RemoveServerFromBlacklist(srv) |
| 646 | r.queues.RetryServer(srv) |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | func sanityCheckAuthChain(authChain []*gomatrixserverlib.Event) error { |
| 651 | // sanity check we have a create event and it has a known room version |
no test coverage detected