We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4731593 commit 5860b2eCopy full SHA for 5860b2e
src/http_server/api/v1/health.c
@@ -533,6 +533,7 @@ static void configure_throughput_check(struct flb_config *config)
533
flb_utils_split(config->hc_throughput_input_plugins, ',', 0);
534
535
if (!throughput_check_state.input_plugins) {
536
+ flb_free(throughput_check_state.sample_list);
537
flb_errno();
538
return;
539
}
@@ -541,6 +542,8 @@ static void configure_throughput_check(struct flb_config *config)
541
542
flb_utils_split(config->hc_throughput_output_plugins, ',', 0);
543
544
if (!throughput_check_state.output_plugins) {
545
546
+ flb_free(throughput_check_state.input_plugins);
547
548
549
0 commit comments