Skip to content

Commit 4baf8b5

Browse files
Merge pull request #112 from Flowpack/feature/elasticsearch-8-compatibility
TASK: Remove include_type_name default parameter
2 parents d9ea76c + 3a7e7d0 commit 4baf8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Domain/Model/Mapping.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public function apply(): Response
100100
{
101101
$content = json_encode($this->asArray());
102102

103-
return $this->type->request('PUT', '/_mapping', ['include_type_name' => 'false'], $content);
103+
return $this->type->request('PUT', '/_mapping', [], $content);
104104
}
105105

106106
/**

0 commit comments

Comments
 (0)