|
@@ -19,6 +19,7 @@
|
|
|
package org.apache.hadoop.hdfs;
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
+import static org.junit.Assert.assertNotNull;
|
|
|
import static org.junit.Assert.assertTrue;
|
|
|
|
|
|
import java.io.IOException;
|
|
@@ -39,7 +40,7 @@ import org.junit.Test;
|
|
|
public class TestHftpURLTimeouts {
|
|
|
@BeforeClass
|
|
|
public static void setup() {
|
|
|
- URLUtils.SOCKET_TIMEOUT = 1;
|
|
|
+ URLUtils.SOCKET_TIMEOUT = 5;
|
|
|
}
|
|
|
|
|
|
@Test
|
|
@@ -116,6 +117,7 @@ public class TestHftpURLTimeouts {
|
|
|
conns.add(fs.openConnection("/", ""));
|
|
|
} catch (SocketTimeoutException ste) {
|
|
|
String message = ste.getMessage();
|
|
|
+ assertNotNull(message);
|
|
|
// https will get a read timeout due to SSL negotiation, but
|
|
|
// a normal http will not, so need to ignore SSL read timeouts
|
|
|
// until a connect timeout occurs
|