Skip to content

Commit

Permalink
out_logdna: remove unused store (#7629)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidKorczynski authored and leonardo-albertovich committed Oct 5, 2023
1 parent d2021f7 commit 566eb09
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions plugins/out_logdna/logdna.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,21 +305,22 @@ static struct flb_logdna *logdna_config_create(struct flb_output_instance *ins,
tmp = NULL;
hostname = (char *) flb_env_get(config->env, "HOSTNAME");
if (hostname) {
len = strlen(hostname);
ctx->_hostname = flb_sds_create(hostname);
}
else {
ctx->_hostname = flb_sds_create("unknown");
}
if (!ctx->_hostname) {
flb_free(ctx);
return NULL;
}
}
else {
ctx->_hostname = flb_sds_create(ctx->hostname);
}

/* Bail if unsuccessful hostname creation */
if (!ctx->_hostname) {
flb_free(ctx);
return NULL;
}

/* Create Upstream connection context */
upstream = flb_upstream_create(config,
ctx->logdna_host,
Expand Down

0 comments on commit 566eb09

Please sign in to comment.