Skip to content

Commit

Permalink
changes code comment style
Browse files Browse the repository at this point in the history
Signed-off-by: Tanmaya Panda <[email protected]>
  • Loading branch information
tanmaya-panda1 committed Jan 11, 2024
1 parent 4c06086 commit e1d2055
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/out_azure_kusto/azure_kusto_ingest.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ static flb_sds_t azure_kusto_create_blob(struct flb_azure_kusto *ctx, flb_sds_t
flb_http_add_header(c, "x-ms-date", 9, tmp, len);
flb_http_add_header(c, "x-ms-version", 12, "2019-12-12", 10);

//added kusto specific headers for debugging requests
/* added kusto specific headers for debugging requests */
flb_http_add_header(c, "x-ms-user", 9, "Fluent-Bit", 10);
flb_http_add_header(c, "x-ms-client-request-id", 22, generate_uuid(), 36);
flb_http_add_header(c, "x-ms-client-version", 10, FLB_VERSION_STR, strlen(FLB_VERSION_STR));
Expand Down Expand Up @@ -374,7 +374,7 @@ static int azure_kusto_enqueue_ingestion(struct flb_azure_kusto *ctx, flb_sds_t
flb_http_add_header(c, "x-ms-date", 9, tmp, len);
flb_http_add_header(c, "x-ms-version", 12, "2019-12-12", 10);

//added kusto specific headers for debugging requests
/* added kusto specific headers for debugging requests */
flb_http_add_header(c, "x-ms-user", 9, "Fluent-Bit", 10);
flb_http_add_header(c, "x-ms-client-request-id", 22, generate_uuid(), 36);
flb_http_add_header(c, "x-ms-client-version", 10, FLB_VERSION_STR, strlen(FLB_VERSION_STR));
Expand Down

0 comments on commit e1d2055

Please sign in to comment.