From 20262ed802907b4d394343d6116a8b878c6e106c Mon Sep 17 00:00:00 2001 From: axenteoctavian Date: Wed, 12 Feb 2025 11:20:13 +0200 Subject: [PATCH] fixes after review --- cmd/node/config/external.toml | 1 + config/externalConfig.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/node/config/external.toml b/cmd/node/config/external.toml index 2b70645cba..8dfec80ed9 100644 --- a/cmd/node/config/external.toml +++ b/cmd/node/config/external.toml @@ -21,6 +21,7 @@ # the node might lose rating (even facing penalties) due to the fact that # the indexer is called synchronously and might block due to external causes. # Strongly suggested to activate this on a regular observer node. + # To use our public elastic client, set the URL to https://index.multiversx.com Enabled = false URL = "http://localhost:9201" Username = "" diff --git a/config/externalConfig.go b/config/externalConfig.go index 43c9f50730..29f8534352 100644 --- a/config/externalConfig.go +++ b/config/externalConfig.go @@ -3,9 +3,9 @@ package config // ExternalConfig will hold the configurations for external tools, such as Explorer or Elasticsearch type ExternalConfig struct { ElasticSearchConnector ElasticSearchConfig - MainChainElasticSearchConnector MainChainElasticSearchConfig EventNotifierConnector EventNotifierConfig HostDriversConfig []HostDriversConfig + MainChainElasticSearchConnector MainChainElasticSearchConfig } // ElasticSearchConfig will hold the configuration for the elastic search