mirror of
https://github.com/corda/corda.git
synced 2025-06-16 22:28:15 +00:00
NAAS-49 Flag notary/extraConfig block as sensitive (#6880)
This commit is contained in:
@ -205,7 +205,7 @@ internal object NotaryConfigSpec : Configuration.Specification<NotaryConfig>("No
|
||||
private val serviceLegalName by string().mapValid(::toCordaX500Name).optional()
|
||||
private val className by string().optional()
|
||||
private val etaMessageThresholdSeconds by int().optional().withDefaultValue(NotaryServiceFlow.defaultEstimatedWaitTime.seconds.toInt())
|
||||
private val extraConfig by nestedObject().map(ConfigObject::toConfig).optional()
|
||||
private val extraConfig by nestedObject(sensitive = true).map(ConfigObject::toConfig).optional()
|
||||
private val raft by nested(RaftConfigSpec).optional()
|
||||
private val bftSMaRt by nested(BFTSmartConfigSpec).optional()
|
||||
private val enableOverridableFlows by boolean().optional()
|
||||
|
Reference in New Issue
Block a user