From aaea5734499490b45e6933e4b964a176b850269d Mon Sep 17 00:00:00 2001 From: Vaibhav-C-S Date: Sun, 7 Jun 2026 00:12:49 +0530 Subject: [PATCH] out_azure_blob: fix delete blob success status Signed-off-by: Vaibhav-C-S --- plugins/out_azure_blob/azure_blob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/out_azure_blob/azure_blob.c b/plugins/out_azure_blob/azure_blob.c index 5b30d8bae4a..57ffd90ad43 100644 --- a/plugins/out_azure_blob/azure_blob.c +++ b/plugins/out_azure_blob/azure_blob.c @@ -829,7 +829,7 @@ static int delete_blob(struct flb_azure_blob *ctx, goto cleanup_delete; } - if (c->resp.status == 201) { + if (c->resp.status == 202) { /* delete "&sig=..." in the c->uri for security */ char *p = strstr(c->uri, "&sig="); if (p) {