Skip to content

Commit

Permalink
Do not wipe cluster at all
Browse files Browse the repository at this point in the history
Signed-off-by: Sachin Kale <kalsac@amazon.com>
  • Loading branch information
Sachin Kale committed Sep 1, 2023
1 parent 12775c3 commit 3be1f3d
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -406,7 +406,7 @@ protected final void beforeInternal() throws Exception {
final Scope currentClusterScope = getCurrentClusterScope();
Callable<Void> setup = () -> {
cluster().beforeTest(random());
cluster().wipe(excludeTemplates());
//cluster().wipe(excludeTemplates());
randomIndexTemplate();
return null;
};
Expand Down Expand Up @@ -2538,7 +2538,7 @@ protected static RestClient createRestClient(
protected void setupSuiteScopeCluster() throws Exception {}

private static boolean isSuiteScopedTest(Class<?> clazz) {
return clazz.getAnnotation(SuiteScopeTestCase.class) != null;
return false;
}

/**
Expand Down

0 comments on commit 3be1f3d

Please sign in to comment.