Restore the getServers RS query (needs optimisation)

This commit is contained in:
Neil Alexander 2021-06-29 09:37:28 +01:00
parent 4417f24678
commit f645646ca9
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -486,7 +486,6 @@ func (t *txnReq) getServers(ctx context.Context, roomID string) []gomatrixserver
return t.servers
}
t.servers = []gomatrixserverlib.ServerName{t.Origin}
/*
serverReq := &api.QueryServerJoinedToRoomRequest{
RoomID: roomID,
}
@ -495,7 +494,6 @@ func (t *txnReq) getServers(ctx context.Context, roomID string) []gomatrixserver
t.servers = append(t.servers, serverRes.ServerNames...)
util.GetLogger(ctx).Infof("Found %d server(s) to query for missing events in %q", len(t.servers), roomID)
}
*/
return t.servers
}