mirror of https://github.com/apache/druid.git
override retry attempts for InputEntityIteratingReaderTest for much faster test run (#14897)
This commit is contained in:
parent
fb053c399c
commit
7b5012ea6e
|
@ -125,6 +125,15 @@ public class InputEntityIteratingReaderTest extends InitializedNullHandlingTest
|
||||||
),
|
),
|
||||||
ImmutableList.of(
|
ImmutableList.of(
|
||||||
new HttpEntity(new URI("testscheme://some/path"), null, null)
|
new HttpEntity(new URI("testscheme://some/path"), null, null)
|
||||||
|
{
|
||||||
|
@Override
|
||||||
|
protected int getMaxRetries()
|
||||||
|
{
|
||||||
|
// override so this test does not take like 4 minutes to run
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
).iterator(),
|
).iterator(),
|
||||||
temporaryFolder.newFolder()
|
temporaryFolder.newFolder()
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue