Skip to content

Commit

Permalink
plugin_proxy: Allow to execute flush callback on Golang side during h…
Browse files Browse the repository at this point in the history
…ot-reloading

Signed-off-by: Ankur Patel <[email protected]>
  • Loading branch information
imankurpatel000 committed Dec 16, 2024
1 parent 4d715c0 commit 2b279bf
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/flb_plugin_proxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,6 @@ static void proxy_cb_flush(struct flb_event_chunk *event_chunk,
(void) i_ins;
(void) config;

/* To prevent flush callback executions, we need to check the
* status of hot-reloading. The actual problem is: we don't have
* pause procedure/mechanism for output plugin. For now, we just halt the
* flush callback here during hot-reloading is in progress. */
if (config->shutdown_by_hot_reloading == FLB_TRUE) {
flb_trace("[GO] hot-reloading is in progress. Retry flushing");
FLB_OUTPUT_RETURN(FLB_RETRY);
}

#ifdef FLB_HAVE_PROXY_GO
if (ctx->proxy->def->proxy == FLB_PROXY_GOLANG) {
flb_trace("[GO] entering go_flush()");
Expand Down

0 comments on commit 2b279bf

Please sign in to comment.