We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a95b99 commit 292649dCopy full SHA for 292649d
server/src/internalClusterTest/java/org/elasticsearch/snapshots/SnapshotStressTestsIT.java
@@ -61,7 +61,6 @@
61
import org.elasticsearch.threadpool.TestThreadPool;
62
import org.elasticsearch.threadpool.ThreadPool;
63
import org.junit.After;
64
-import org.junit.Before;
65
66
import java.nio.file.Path;
67
import java.util.ArrayList;
@@ -96,8 +95,9 @@ public class SnapshotStressTestsIT extends AbstractSnapshotIntegTestCase {
96
95
97
private int initialShardSnapshotPerNodeLimit;
98
99
- @Before
100
- public void randomInitialShardSnapshotPerNodeLimit() {
+ @Override
+ public void setUp() throws Exception {
+ super.setUp();
101
initialShardSnapshotPerNodeLimit = between(0, 10);
102
}
103
0 commit comments