Skip to content

Commit

Permalink
Fix Armeria
Browse files Browse the repository at this point in the history
  • Loading branch information
trask committed Apr 22, 2021
1 parent bae2186 commit 20f97b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enum ClientRequestContextSetter implements TextMapSetter<ClientRequestContext> {
@Override
public void set(@Nullable ClientRequestContext carrier, String key, String value) {
if (carrier != null) {
carrier.addAdditionalRequestHeader(key, value);
carrier.setAdditionalRequestHeader(key, value);
}
}
}

0 comments on commit 20f97b4

Please sign in to comment.