mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
NAAS-49 Flag notary/extraConfig block as sensitive (#6880)
This commit is contained in:
parent
23fab7ae0c
commit
fe8baf4b17
2
.github/workflows/check-pr-title.yml
vendored
2
.github/workflows/check-pr-title.yml
vendored
@ -9,6 +9,6 @@ jobs:
|
||||
steps:
|
||||
- uses: morrisoncole/pr-lint-action@v1.4.1
|
||||
with:
|
||||
title-regex: '^((CORDA|AG|EG|ENT|INFRA)-\d+|NOTICK)(.*)'
|
||||
title-regex: '^((CORDA|AG|EG|ENT|INFRA|NAAS)-\d+|NOTICK)(.*)'
|
||||
on-failed-regex-comment: "PR title failed to match regex -> `%regex%`"
|
||||
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user