]
Bela Ban updated JGRP-2216:
---------------------------
Fix Version/s: (was: 3.6.14)
Fixed in 4.0.7: {{DNS_PING}} does not exist in the 3.6 branch
IllegalFormatException in DefaultDNSResolver#getDnsContext()
-------------------------------------------------------------
Key: JGRP-2216
URL:
https://issues.jboss.org/browse/JGRP-2216
Project: JGroups
Issue Type: Bug
Affects Versions: 3.6.10, 4.0.5
Reporter: Johan Vogelzang
Assignee: Bela Ban
Fix For: 4.0.7
An IllegalFormatException is thrown at:
DefaultDNSResolver#getDnsContext()
{code}
log.trace("Initializing DNS Context with factory: %s and url: %s" +
dnsContextFactory, dnsAddress);
{code}
should be:
{code}
log.trace("Initializing DNS Context with factory: %s and url: %s",
dnsContextFactory, dnsAddress);
{code}
plus sign changed in to comma.