mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-03 12:08:31 +00:00
MINOR: added testSuite field back to lineage response (#18313)
* fix: added testSuite field back to lineage response * style: fix style
This commit is contained in:
parent
93c444cfa2
commit
fca782cc50
@ -224,9 +224,7 @@ public class ElasticSearchClient implements SearchClient {
|
||||
"chart_suggest",
|
||||
"field_suggest");
|
||||
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
||||
Stream.concat(
|
||||
FIELDS_TO_REMOVE.stream(),
|
||||
Stream.of("schemaDefinition", "testSuite", "customMetrics"))
|
||||
Stream.concat(FIELDS_TO_REMOVE.stream(), Stream.of("schemaDefinition", "customMetrics"))
|
||||
.toList();
|
||||
|
||||
static {
|
||||
|
||||
@ -218,9 +218,7 @@ public class OpenSearchClient implements SearchClient {
|
||||
"chart_suggest",
|
||||
"field_suggest");
|
||||
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
||||
Stream.concat(
|
||||
FIELDS_TO_REMOVE.stream(),
|
||||
Stream.of("schemaDefinition", "testSuite", "customMetrics"))
|
||||
Stream.concat(FIELDS_TO_REMOVE.stream(), Stream.of("schemaDefinition", "customMetrics"))
|
||||
.toList();
|
||||
|
||||
static {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user