@cryptotaxi247 / netdata / commits / 07f8cce2b

Adjust vnodes dyncfg availability (#22415)

Dyncfg is not available for vnodes

Stelios Fragkakis committed May 4, 2026 at 18:51 UTC 07f8cce2b40a16c9580c7bd29cef150da410dc25
1 file changed +1 -1
src/daemon/dyncfg/dyncfg.c
+1 -1
@@ -467,7 +467,7 @@ void dyncfg_add_streaming(BUFFER *wb) {
467 }
468
469 bool dyncfg_available_for_rrdhost(RRDHOST *host) {
470 - if(host == localhost || rrdhost_option_check(host, RRDHOST_OPTION_VIRTUAL_HOST))
470 + if(host == localhost)
471 return true;
472
473 return rrd_function_available(host, PLUGINSD_FUNCTION_CONFIG);