Fix typo that disabled test

This had initially been intended as a change to the test, since allowing unresolved addresses was the goal.  I instead introduced a setting to control when resolution was required.
This commit is contained in:
Steve Vaughan Jr 2022-08-12 11:21:33 -04:00
parent 827c89e88f
commit 9e0f026fe4
1 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ import java.io.IOException;
import java.io.PrintStream;
import java.net.InetSocketAddress;
import java.net.URISyntaxException;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
@ -487,6 +488,7 @@ public class TestGetConf {
* Test handling of unresolvable journal node hosts. They are still configured assuming that
* they will be resolvable in the future.
*/
@Test(expected = UnknownHostException.class, timeout = 10000)
public void testUnknownJournalNodeHost()
throws URISyntaxException, IOException {
String journalsBaseUri = "qjournal://jn1:8020;jn2:8020;jn3:8020";