We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a3ad7 commit 011b2c6Copy full SHA for 011b2c6
1 file changed
x-pack/plugins/ingest_manager/server/services/epm/fields/field.ts
@@ -113,9 +113,11 @@ function dedupFields(fields: Fields): Fields {
113
found.fields = dedupFields(found.fields.concat(field.fields));
114
} else {
115
// only 'group' fields can be merged in this way
116
- throw new Error(
117
- "Can't merge fields " + JSON.stringify(found) + ' and ' + JSON.stringify(field)
118
- );
+ // XXX: don't abort on error for now
+ // see discussion in https://github.com/elastic/kibana/pull/59894
+ // throw new Error(
119
+ // "Can't merge fields " + JSON.stringify(found) + ' and ' + JSON.stringify(field)
120
+ // );
121
}
122
123
if (field.fields) {
0 commit comments