summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2024-01-20 15:51:39 +0200
committerGitHub <noreply@github.com>2024-01-20 15:51:39 +0200
commit4b5453e197af9c61a4465d8fe34ab860bef2c49b (patch)
treebb004a88abfd669666dc1f900c337fdcef3b34cf /daemon
parentb9a6eddd1d7e62470d4fc2e08aea3ebc6a5eedd6 (diff)
fix verify_netdata_host_prefix log spam (#16814)
Diffstat (limited to 'daemon')
-rw-r--r--daemon/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/main.c b/daemon/main.c
index a88fef5e1f..b096f13710 100644
--- a/daemon/main.c
+++ b/daemon/main.c
@@ -1116,7 +1116,7 @@ static void get_netdata_configured_variables() {
// get the hostname
netdata_configured_host_prefix = config_get(CONFIG_SECTION_GLOBAL, "host access prefix", "");
- verify_netdata_host_prefix();
+ verify_netdata_host_prefix(true);
char buf[HOSTNAME_MAX + 1];
if (get_hostname(buf, HOSTNAME_MAX))