Skip to content

Commit

Permalink
Fix ci build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
liukun-msft committed Feb 18, 2022
1 parent 750711e commit 4f2ddcd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ public void process() throws TransportException {
if (LOGGER.isErrorEnabled()) {
LOGGER.error("Proxy authentication required. User configured: '{}', but supported proxy authentication methods are: {}",
proxyConfiguration.authentication(),
supportedTypes.stream().map(Enum::toString).collect(Collectors.joining(",")));
supportedTypes.stream().map(type -> type.toString()).collect(Collectors.joining(",")));
}
closeTailProxyError(PROXY_CONNECT_USER_ERROR + PROXY_CONNECT_FAILED
+ result.getResponse().toString());
Expand Down

0 comments on commit 4f2ddcd

Please sign in to comment.