Skip to content

Commit

Permalink
out_azure_blob: fixed DELETE request signature generation
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Alminana <leonardo.alminana@chronosphere.io>
  • Loading branch information
leonardo-albertovich committed Oct 2, 2024
1 parent a2ddd52 commit 9c09f03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/out_azure_blob/azure_blob_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ flb_sds_t azb_http_canonical_request(struct flb_azure_blob *ctx,
tmp = flb_sds_cat(can_req, "PUT\n", 4);
break;
case FLB_HTTP_DELETE:
tmp = flb_sds_cat(can_req, "DELETE\n", 4);
tmp = flb_sds_cat(can_req, "DELETE\n", 7);
break;
};

Expand Down

0 comments on commit 9c09f03

Please sign in to comment.