Skip to content

Commit

Permalink
Fix meta version of task index mapping (#50363)
Browse files Browse the repository at this point in the history
The built-in task index mapping has a version field in its metadata, so that
the TaskResultsService can check to see if it needs to update mappings when
a new task result is stored. #48393 updated this version in TaskResultsService
but omitted to change the version in the mapping itself, so a mapping update
is applied every time a new task result is stored.

This commit updates the mapping version so that it corresponds to the version
in TaskResultsService.
  • Loading branch information
romseygeek authored Dec 20, 2019
1 parent df4fe73 commit 3cdc23e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"task" : {
"_meta": {
"version": 2
"version": 3
},
"dynamic" : "strict",
"properties" : {
Expand Down

0 comments on commit 3cdc23e

Please sign in to comment.