Skip to content

Commit

Permalink
fix the is_internal.type on the mapping model version to be boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
maxcold committed Jan 31, 2024
1 parent 6c043f8 commit cbc4c05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/plugins/fleet/server/saved_objects/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ const getSavedObjectTypes = (): { [key: string]: SavedObjectsType } => ({
{
type: 'mappings_addition',
addedMappings: {
is_internal: { type: 'keyword', index: false },
is_internal: { type: 'boolean', index: false },
},
},
],
Expand Down

0 comments on commit cbc4c05

Please sign in to comment.