| From 95b149152dfaf2938af935fbb94a6589fef45d26 Mon Sep 17 00:00:00 2001 |
| From: michael |
| <kochera@fluent-bit-repro.us-central1-a.c.cloud-kernel-build.internal> |
| Date: Mon, 3 Jun 2024 09:43:16 +0000 |
| Subject: [PATCH] Fix stackdriver pluging crashing with SIGABRT |
| |
| This changes the default workers for the stackdriver pluging from 2 to 1. |
| --- |
| plugins/out_stackdriver/stackdriver.c | 2 +- |
| 1 file changed, 1 insertion(+), 1 deletion(-) |
| |
| diff --git a/plugins/out_stackdriver/stackdriver.c b/plugins/out_stackdriver/stackdriver.c |
| index e3654dfdb..0a90d6482 100644 |
| --- a/plugins/out_stackdriver/stackdriver.c |
| +++ b/plugins/out_stackdriver/stackdriver.c |
| @@ -2548,7 +2548,7 @@ struct flb_output_plugin out_stackdriver_plugin = { |
| .cb_init = cb_stackdriver_init, |
| .cb_flush = cb_stackdriver_flush, |
| .cb_exit = cb_stackdriver_exit, |
| - .workers = 2, |
| + .workers = 1, |
| .config_map = config_map, |
| |
| /* Test */ |
| -- |
| 2.25.1 |