mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
Converting groovy GStrings to normal strings for ConfigValueFactory
This commit is contained in:
parent
7181b697a3
commit
c7abbe8791
@ -207,9 +207,9 @@ class Node {
|
||||
*/
|
||||
private void installConfig() {
|
||||
// Adding required default values
|
||||
config = config.withValue('extraAdvertisedServiceIds', ConfigValueFactory.fromIterable(advertisedServices))
|
||||
config = config.withValue('extraAdvertisedServiceIds', ConfigValueFactory.fromIterable(advertisedServices*.toString()))
|
||||
if (notaryClusterAddresses.size() > 0) {
|
||||
config = config.withValue('notaryClusterAddresses', ConfigValueFactory.fromIterable(notaryClusterAddresses))
|
||||
config = config.withValue('notaryClusterAddresses', ConfigValueFactory.fromIterable(notaryClusterAddresses*.toString()))
|
||||
}
|
||||
def configFileText = config.root().render(new ConfigRenderOptions(false, false, true, false)).split("\n").toList()
|
||||
|
||||
|
@ -1 +1 @@
|
||||
gradlePluginsVersion=0.8.1
|
||||
gradlePluginsVersion=0.8.2
|
||||
|
Loading…
Reference in New Issue
Block a user