From f67cefb6ba3ee9fd37e19295569a7f2eac45d1e4 Mon Sep 17 00:00:00 2001 From: NThakur4 <nthakur4@slb.com> Date: Tue, 17 Aug 2021 18:03:56 -0500 Subject: [PATCH] remove debug statement --- .../src/main/java/org/opengroup/osdu/common/RecordSteps.java | 1 - .../src/test/java/org/opengroup/osdu/util/GcpElasticUtils.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/testing/indexer-test-core/src/main/java/org/opengroup/osdu/common/RecordSteps.java b/testing/indexer-test-core/src/main/java/org/opengroup/osdu/common/RecordSteps.java index 5faa67a8b..d78985d0d 100644 --- a/testing/indexer-test-core/src/main/java/org/opengroup/osdu/common/RecordSteps.java +++ b/testing/indexer-test-core/src/main/java/org/opengroup/osdu/common/RecordSteps.java @@ -152,7 +152,6 @@ public class RecordSteps extends TestsBase { public void i_can_validate_indexed_attributes(String index, String kind) throws Throwable { String authority = tenantMap.get(kind.substring(0, kind.indexOf(":"))); index = generateActualName(index, timeStamp); - log.log(Level.INFO, String.format("Search by authority: %s", authority)); List<Map<String, Object>> hits = elasticUtils.fetchRecordsByAttribute(index, "authority", authority); assertTrue(hits.size() > 0); diff --git a/testing/indexer-test-gcp/src/test/java/org/opengroup/osdu/util/GcpElasticUtils.java b/testing/indexer-test-gcp/src/test/java/org/opengroup/osdu/util/GcpElasticUtils.java index 1657a5edc..ce781c6e8 100644 --- a/testing/indexer-test-gcp/src/test/java/org/opengroup/osdu/util/GcpElasticUtils.java +++ b/testing/indexer-test-gcp/src/test/java/org/opengroup/osdu/util/GcpElasticUtils.java @@ -11,7 +11,7 @@ public class GcpElasticUtils extends ElasticUtils { @Override public void deleteIndex(String index) { -// indexerClientUtil.deleteIndex(convertIndexToKindName(index)); + indexerClientUtil.deleteIndex(convertIndexToKindName(index)); } private String convertIndexToKindName(String index) { -- GitLab