Skip to content

Commit

Permalink
Merge pull request #112 from Flowpack/feature/elasticsearch-8-compati…
Browse files Browse the repository at this point in the history
…bility

TASK: Remove include_type_name default parameter
  • Loading branch information
daniellienert authored Nov 1, 2023
2 parents d9ea76c + 3a7e7d0 commit 4baf8b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Model/Mapping.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public function apply(): Response
{
$content = json_encode($this->asArray());

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

/**
Expand Down

0 comments on commit 4baf8b5

Please sign in to comment.