fix(spiff-workflow)_: set NoDiscovery=true
To avoid errors like this: ``` NoDiscovery is false, but ClusterConfig.BootNodes is empty ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
9f1c0a27b7
commit
8c940bcfb0
|
@ -277,6 +277,8 @@ func defaultNodeConfig(installationID string) (*params.NodeConfig, error) {
|
|||
// FIXME: This should be taken from CLI flags.
|
||||
nodeConfig.HTTPVirtualHosts = []string{"localhost", "wakunode"}
|
||||
nodeConfig.APIModules = *apiModules
|
||||
// Disable to avoid errors about empty ClusterConfig.BootNodes.
|
||||
nodeConfig.NoDiscovery = true
|
||||
|
||||
nodeConfig.UpstreamConfig = params.UpstreamRPCConfig{
|
||||
Enabled: true,
|
||||
|
|
Loading…
Reference in New Issue