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 6e87b29 commit aa20b6b
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 aa20b6b

Please sign in to comment.