Skip to content
Snippets Groups Projects
Commit f67cefb6 authored by Neelesh Thakur's avatar Neelesh Thakur
Browse files

remove debug statement

parent 3ee088da
No related branches found
No related tags found
1 merge request!170enable indexing of audit-trail attributes
Pipeline #59285 failed
...@@ -152,7 +152,6 @@ public class RecordSteps extends TestsBase { ...@@ -152,7 +152,6 @@ public class RecordSteps extends TestsBase {
public void i_can_validate_indexed_attributes(String index, String kind) throws Throwable { public void i_can_validate_indexed_attributes(String index, String kind) throws Throwable {
String authority = tenantMap.get(kind.substring(0, kind.indexOf(":"))); String authority = tenantMap.get(kind.substring(0, kind.indexOf(":")));
index = generateActualName(index, timeStamp); 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); List<Map<String, Object>> hits = elasticUtils.fetchRecordsByAttribute(index, "authority", authority);
assertTrue(hits.size() > 0); assertTrue(hits.size() > 0);
......
...@@ -11,7 +11,7 @@ public class GcpElasticUtils extends ElasticUtils { ...@@ -11,7 +11,7 @@ public class GcpElasticUtils extends ElasticUtils {
@Override @Override
public void deleteIndex(String index) { public void deleteIndex(String index) {
// indexerClientUtil.deleteIndex(convertIndexToKindName(index)); indexerClientUtil.deleteIndex(convertIndexToKindName(index));
} }
private String convertIndexToKindName(String index) { private String convertIndexToKindName(String index) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment