summaryrefslogtreecommitdiffstats
path: root/streaming
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2019-05-27 10:30:15 +0200
committerGitHub <noreply@github.com>2019-05-27 10:30:15 +0200
commit9410b63ee9168c80e6b0aedd8abe4ee0944d8047 (patch)
tree18b80702d368ce343a7acfd52bfa99d35bade6aa /streaming
parent9f532f4981bdc4455a3115e580fe4014ff928efb (diff)
Remove unecessary 2nd call of get_system_info at startup (#6128)
Diffstat (limited to 'streaming')
-rw-r--r--streaming/rrdpush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/rrdpush.c b/streaming/rrdpush.c
index cdf541e371..6a7ebfee37 100644
--- a/streaming/rrdpush.c
+++ b/streaming/rrdpush.c
@@ -1178,7 +1178,7 @@ int rrdpush_receiver_thread_spawn(RRDHOST *host, struct web_client *w, char *url
else if(!strcmp(name, "tags"))
tags = value;
else
- if(unlikely(rrdhost_set_system_info_variable(NULL, system_info, name, value))) {
+ if(unlikely(rrdhost_set_system_info_variable(system_info, name, value))) {
info("STREAM [receive from [%s]:%s]: request has parameter '%s' = '%s', which is not used.", w->client_ip, w->client_port, key, value);
}
}