mirror of
https://github.com/corda/corda.git
synced 2025-01-18 10:46:38 +00:00
Fixed unrecognized property jarDirs
in node configuration. (#2748)
This commit is contained in:
parent
727f2b6cd1
commit
f483763249
@ -152,7 +152,9 @@ data class NodeConfigurationImpl(
|
||||
private val attachmentContentCacheSizeMegaBytes: Int? = null,
|
||||
override val attachmentCacheBound: Long = NodeConfiguration.defaultAttachmentCacheBound,
|
||||
// do not use or remove (breaks DemoBench together with rejection of unknown configuration keys during parsing)
|
||||
private val h2port: Int = 0
|
||||
private val h2port: Int = 0,
|
||||
// do not use or remove (used by Capsule)
|
||||
private val jarDirs: List<String> = emptyList()
|
||||
) : NodeConfiguration {
|
||||
companion object {
|
||||
private val logger = loggerFor<NodeConfigurationImpl>()
|
||||
|
Loading…
Reference in New Issue
Block a user