Skip to content
Snippets Groups Projects
Commit 0d79f88c authored by Matt Wise's avatar Matt Wise Committed by David Diederich
Browse files

Merge branch 'patch-tags-to-object' into 'master'

change Tags type to Object instead of Flattened to allow OSS versions of ElasticSearch to continue working

Closes #15

See merge request !119

(cherry picked from commit a0ba1856)

70b6ea2c change Tags type to Object instead of Flattened to allow OSS versions of...
parent a313cdf0
No related branches found
Tags
1 merge request!120Cherry-pick "change Tags type to Object instead of Flattened ..." into release/0.7
Pipeline #31383 failed
......@@ -43,7 +43,7 @@ public class TypeMapper {
metaAttributeIndexerType.put(RecordMetaAttribute.VERSION.getValue(), ElasticType.LONG.getValue());
metaAttributeIndexerType.put(RecordMetaAttribute.X_ACL.getValue(), ElasticType.KEYWORD.getValue());
metaAttributeIndexerType.put(RecordMetaAttribute.ACL.getValue(), getAclIndexerMapping());
metaAttributeIndexerType.put(RecordMetaAttribute.TAGS.getValue(), ElasticType.FLATTENED.getValue());
metaAttributeIndexerType.put(RecordMetaAttribute.TAGS.getValue(), ElasticType.OBJECT.getValue());
metaAttributeIndexerType.put(RecordMetaAttribute.LEGAL.getValue(), getLegalIndexerMapping());
metaAttributeIndexerType.put(RecordMetaAttribute.ANCESTRY.getValue(), getAncestryIndexerMapping());
metaAttributeIndexerType.put(RecordMetaAttribute.INDEX_STATUS.getValue(), getIndexStatusMapping());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment