Merge branch 'master' into hs/fix-as-exclusive

This commit is contained in:
Will Hunt 2020-12-18 01:03:10 +00:00 committed by GitHub
commit 07967477fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -65,6 +65,8 @@ func main() {
cfg.FederationSender.DisableTLSValidation = true cfg.FederationSender.DisableTLSValidation = true
cfg.MSCs.MSCs = []string{"msc2836"} cfg.MSCs.MSCs = []string{"msc2836"}
cfg.Logging[0].Level = "trace" cfg.Logging[0].Level = "trace"
// don't hit matrix.org when running tests!!!
cfg.SigningKeyServer.KeyPerspectives = config.KeyPerspectives{}
} }
j, err := yaml.Marshal(cfg) j, err := yaml.Marshal(cfg)