Skip to content

Commit

Permalink
Do not overwrite client span if incoming request has "uber-trace-id" …
Browse files Browse the repository at this point in the history
…header
  • Loading branch information
rafis committed Jan 23, 2023
1 parent 8a865d5 commit abad226
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ private void addHeadersWithInput(ServerHttpRequest.Builder builder,
.entrySet()) {
String key = entry.getKey();
List<String> value = entry.getValue();
headersWithInput.put(key, value);
headersWithInput.putIfAbsent(key, value);
}
}

Expand Down

0 comments on commit abad226

Please sign in to comment.