]
Bela Ban updated JGRP-2216:
---------------------------
Fix Version/s: 3.6.14
4.0.7
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: 3.6.14, 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.