Skip to content

Commit 3be1f3d

Browse files
author
Sachin Kale
committed
Do not wipe cluster at all
Signed-off-by: Sachin Kale <kalsac@amazon.com>
1 parent 12775c3 commit 3be1f3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/framework/src/main/java/org/opensearch/test/OpenSearchIntegTestCase.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ protected final void beforeInternal() throws Exception {
406406
final Scope currentClusterScope = getCurrentClusterScope();
407407
Callable<Void> setup = () -> {
408408
cluster().beforeTest(random());
409-
cluster().wipe(excludeTemplates());
409+
//cluster().wipe(excludeTemplates());
410410
randomIndexTemplate();
411411
return null;
412412
};
@@ -2538,7 +2538,7 @@ protected static RestClient createRestClient(
25382538
protected void setupSuiteScopeCluster() throws Exception {}
25392539

25402540
private static boolean isSuiteScopedTest(Class<?> clazz) {
2541-
return clazz.getAnnotation(SuiteScopeTestCase.class) != null;
2541+
return false;
25422542
}
25432543

25442544
/**

0 commit comments

Comments
 (0)