Disable revocation table for testplanet. (#1283)

This commit is contained in:
Egon Elbre 2019-02-08 21:27:31 +02:00 committed by GitHub
parent e37e0c1b5f
commit 12bdc0ef21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -385,7 +385,7 @@ func (planet *Planet) newSatellites(count int) ([]*satellite.Peer, error) {
RevocationDBURL: "bolt://" + filepath.Join(storageDir, "revocation.db"),
UsePeerCAWhitelist: false, // TODO: enable
Extensions: peertls.TLSExtConfig{
Revocation: true,
Revocation: false,
WhitelistSignedLeaf: false,
},
},
@ -512,7 +512,7 @@ func (planet *Planet) newStorageNodes(count int) ([]*storagenode.Peer, error) {
RevocationDBURL: "bolt://" + filepath.Join(storageDir, "revocation.db"),
UsePeerCAWhitelist: false, // TODO: enable
Extensions: peertls.TLSExtConfig{
Revocation: true,
Revocation: false,
WhitelistSignedLeaf: false,
},
},
@ -589,7 +589,7 @@ func (planet *Planet) newBootstrap() (peer *bootstrap.Peer, err error) {
RevocationDBURL: "bolt://" + filepath.Join(dbDir, "revocation.db"),
UsePeerCAWhitelist: false, // TODO: enable
Extensions: peertls.TLSExtConfig{
Revocation: true,
Revocation: false,
WhitelistSignedLeaf: false,
},
},