Skip to content

Commit

Permalink
Override xray trace header insteand of appending (#10766)
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzlei committed Mar 11, 2024
1 parent 8b72525 commit a942b23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ enum RequestHeaderSetter implements TextMapSetter<SdkHttpRequest.Builder> {

@Override
public void set(SdkHttpRequest.Builder builder, String name, String value) {
builder.appendHeader(name, value);
builder.putHeader(name, value);
}
}

0 comments on commit a942b23

Please sign in to comment.