mirror of https://github.com/apache/nifi.git
NIFI-1789 Temporarily ignored incorrectly failing TestPutUDP#testUnknownHostname.
This closes #373.
This commit is contained in:
parent
293a3042cd
commit
f94b0f2ed2
|
@ -19,14 +19,15 @@ package org.apache.nifi.processors.standard;
|
||||||
import static org.junit.Assert.assertArrayEquals;
|
import static org.junit.Assert.assertArrayEquals;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
|
|
||||||
import java.net.DatagramPacket;
|
import java.net.DatagramPacket;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.util.concurrent.ArrayBlockingQueue;
|
import java.util.concurrent.ArrayBlockingQueue;
|
||||||
|
|
||||||
import org.apache.nifi.util.TestRunner;
|
import org.apache.nifi.util.TestRunner;
|
||||||
import org.apache.nifi.util.TestRunners;
|
import org.apache.nifi.util.TestRunners;
|
||||||
import org.junit.After;
|
import org.junit.After;
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
|
import org.junit.Ignore;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
public class TestPutUDP {
|
public class TestPutUDP {
|
||||||
|
@ -141,6 +142,7 @@ public class TestPutUDP {
|
||||||
checkInputQueueIsEmpty();
|
checkInputQueueIsEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Ignore("This test is failing incorrectly as documented in NIFI-1795")
|
||||||
@Test(timeout = LONG_TEST_TIMEOUT_PERIOD)
|
@Test(timeout = LONG_TEST_TIMEOUT_PERIOD)
|
||||||
public void testUnknownHostname() throws Exception {
|
public void testUnknownHostname() throws Exception {
|
||||||
configureProperties(UNKNOWN_HOST, true);
|
configureProperties(UNKNOWN_HOST, true);
|
||||||
|
|
Loading…
Reference in New Issue