mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-09 23:40:05 +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",
|
"chart_suggest",
|
||||||
"field_suggest");
|
"field_suggest");
|
||||||
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
||||||
Stream.concat(
|
Stream.concat(FIELDS_TO_REMOVE.stream(), Stream.of("schemaDefinition", "customMetrics"))
|
||||||
FIELDS_TO_REMOVE.stream(),
|
|
||||||
Stream.of("schemaDefinition", "testSuite", "customMetrics"))
|
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
|||||||
@ -218,9 +218,7 @@ public class OpenSearchClient implements SearchClient {
|
|||||||
"chart_suggest",
|
"chart_suggest",
|
||||||
"field_suggest");
|
"field_suggest");
|
||||||
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
private static final List<String> SOURCE_FIELDS_TO_EXCLUDE =
|
||||||
Stream.concat(
|
Stream.concat(FIELDS_TO_REMOVE.stream(), Stream.of("schemaDefinition", "customMetrics"))
|
||||||
FIELDS_TO_REMOVE.stream(),
|
|
||||||
Stream.of("schemaDefinition", "testSuite", "customMetrics"))
|
|
||||||
.toList();
|
.toList();
|
||||||
|
|
||||||
static {
|
static {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user