Skip to content

Commit

Permalink
[LI-CHERRY-PICK] [e323f4b] MINOR: Fixing log format typo (apache#7219)
Browse files Browse the repository at this point in the history
TICKET =
LI_DESCRIPTION =
EXIT_CRITERIA = HASH [e323f4b]
ORIGINAL_DESCRIPTION =

Reviewers: Manikumar Reddy <manikumar.reddy@gmail.com>
(cherry picked from commit e323f4b)
  • Loading branch information
pan3793 authored and xiowu0 committed Aug 21, 2019
1 parent a89170a commit 1a4492d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -63,7 +63,7 @@ public static List<InetSocketAddress> parseAndValidateAddresses(List<String> url
String resolvedCanonicalName = inetAddress.getCanonicalHostName();
InetSocketAddress address = new InetSocketAddress(resolvedCanonicalName, port);
if (address.isUnresolved()) {
log.warn("Couldn't resolve server {} from {} as DNS resolution of the canonical hostname [} failed for {}", url, CommonClientConfigs.BOOTSTRAP_SERVERS_CONFIG, resolvedCanonicalName, host);
log.warn("Couldn't resolve server {} from {} as DNS resolution of the canonical hostname {} failed for {}", url, CommonClientConfigs.BOOTSTRAP_SERVERS_CONFIG, resolvedCanonicalName, host);
} else {
addresses.add(address);
}
Expand Down

0 comments on commit 1a4492d

Please sign in to comment.