HADOOP-17837: Add unresolved endpoint value to UnknownHostException (ADDENDUM) (#3276)

(cherry picked from commit b0b867e977ab853d1dfc434195c486cf0ca32dab)
This commit is contained in:
Bryan Beaudreault 2021-08-06 12:24:07 -04:00 committed by Brahma Reddy Battula
parent 7068e18842
commit 2fda130260

View File

@ -43,6 +43,7 @@ import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.io.IOUtils;
import org.apache.hadoop.security.KerberosAuthException;
import org.apache.hadoop.security.NetUtilsTestResolver;
import org.apache.hadoop.test.GenericTestUtils;
import org.junit.Assume;
import org.junit.Before;
import org.junit.BeforeClass;
@ -111,7 +112,7 @@ public class TestNetUtils {
fail("Should not have connected");
} catch (UnknownHostException uhe) {
LOG.info("Got exception: ", uhe);
assertEquals("invalid-test-host:0", uhe.getMessage());
GenericTestUtils.assertExceptionContains("invalid-test-host:0", uhe);
}
}