summaryrefslogtreecommitdiffstats
path: root/streaming
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-05-19 12:33:38 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-05-19 12:33:59 +0000
commit1ee0c09c5742557e037df5421ca62abddb90ae22 (patch)
tree71c0fa48bb6d31d036c9badd7e038527f90d1a73 /streaming
parentReleasing debian version 1.30.1-1. (diff)
downloadnetdata-1ee0c09c5742557e037df5421ca62abddb90ae22.tar.xz
netdata-1ee0c09c5742557e037df5421ca62abddb90ae22.zip
Merging upstream version 1.31.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'streaming')
-rw-r--r--streaming/receiver.c7
-rw-r--r--streaming/sender.c2
2 files changed, 6 insertions, 3 deletions
diff --git a/streaming/receiver.c b/streaming/receiver.c
index 03954064a..11191f3c7 100644
--- a/streaming/receiver.c
+++ b/streaming/receiver.c
@@ -30,7 +30,7 @@ static void rrdpush_receiver_thread_cleanup(void *ptr) {
executed = 1;
struct receiver_state *rpt = (struct receiver_state *) ptr;
// If the shutdown sequence has started, and this receiver is still attached to the host then we cannot touch
- // the host pointer as it is unpredicable when the RRDHOST is deleted. Do the cleanup from rrdhost_free().
+ // the host pointer as it is unpredictable when the RRDHOST is deleted. Do the cleanup from rrdhost_free().
if (netdata_exit && rpt->host) {
rpt->exited = 1;
return;
@@ -123,13 +123,16 @@ PARSER_RC streaming_claimed_id(char **words, void *user, PLUGINSD_ACTION *plugin
if(strcmp(words[1], host->machine_guid)) {
error("Claim ID is for host \"%s\" but it came over connection for \"%s\"", words[1], host->machine_guid);
- return PARSER_RC_OK; //the message is OK problem must be somewehere else
+ return PARSER_RC_OK; //the message is OK problem must be somewhere else
}
rrdhost_aclk_state_lock(host);
if (host->aclk_state.claimed_id)
freez(host->aclk_state.claimed_id);
host->aclk_state.claimed_id = strcmp(words[2], "NULL") ? strdupz(words[2]) : NULL;
+
+ store_claim_id(&host->host_uuid, host->aclk_state.claimed_id ? &uuid : NULL);
+
rrdhost_aclk_state_unlock(host);
rrdpush_claimed_id(host);
diff --git a/streaming/sender.c b/streaming/sender.c
index d55a420ab..1dee1f050 100644
--- a/streaming/sender.c
+++ b/streaming/sender.c
@@ -450,7 +450,7 @@ void attempt_to_send(struct sender_state *s) {
s->last_sent_t = now_monotonic_sec();
}
else if (ret == -1 && (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK))
- debug(D_STREAM, "STREAM %s [send to %s]: unavailable aftering polling POLLOUT", s->host->hostname,
+ debug(D_STREAM, "STREAM %s [send to %s]: unavailable after polling POLLOUT", s->host->hostname,
s->connected_to);
else if (ret == -1) {
debug(D_STREAM, "STREAM: Send failed - closing socket...");