Add CLIENT_NAME_NONE to WebClientExchangeTags

This commit is contained in:
Johnny Lim 2018-06-12 12:41:11 +09:00 committed by Brian Clozel
parent 2ecd70416c
commit de3c3cd755
1 changed files with 3 additions and 1 deletions

View File

@ -45,6 +45,8 @@ public final class WebClientExchangeTags {
private static final Pattern PATTERN_BEFORE_PATH = Pattern
.compile("^https?://[^/]+/");
private static final Tag CLIENT_NAME_NONE = Tag.of("clientName", "none");
private WebClientExchangeTags() {
}
@ -104,7 +106,7 @@ public final class WebClientExchangeTags {
public static Tag clientName(ClientRequest request) {
String host = request.url().getHost();
if (host == null) {
host = "none";
return CLIENT_NAME_NONE;
}
return Tag.of("clientName", host);
}