HDFS-9740. Use a reasonable limit in DFSTestUtil.waitForMetric() (Contributed by Chang Li)
This commit is contained in:
parent
d6b1acb940
commit
eb2fb943fd
|
@ -2760,6 +2760,9 @@ Release 2.7.3 - UNRELEASED
|
|||
HDFS-9406. FSImage may get corrupted after deleting snapshot.
|
||||
(Contributed by Jing Zhao, Stanislav Antic, Vinayakumar B, Yongjun Zhang)
|
||||
|
||||
HDFS-9740. Use a reasonable limit in DFSTestUtil.waitForMetric()
|
||||
(Chang Li via vinayakumarb)
|
||||
|
||||
Release 2.7.2 - 2016-01-25
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -2023,6 +2023,6 @@ public class DFSTestUtil {
|
|||
throw new UnhandledException("Test failed due to unexpected exception", e);
|
||||
}
|
||||
}
|
||||
}, 1000, Integer.MAX_VALUE);
|
||||
}, 1000, 60000);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue