Skip to content

Commit

Permalink
remove 'body' from TransferInfo on Guzzle Transport - Following on from
Browse files Browse the repository at this point in the history
#1592 (#1596)

- update CHANGELOG, link to PR
- remove 'body' from TransferInfo
  • Loading branch information
jandom authored and p365labs committed Jan 23, 2019
1 parent 924c8f9 commit b300234
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -31,7 +31,7 @@ All notable changes to this project will be documented in this file based on the

### Added

* Added a transport class for mocking a HTTP 403 error codes, useful for testing response failures in inheriting clients
* Added a transport class for mocking a HTTP 403 error codes, useful for testing response failures in inheriting clients [#1529](https://github.com/ruflin/Elastica/pull/1529)
* [Field](https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-function-score-query.html#function-random) param for `Elastica\Query\FunctionScore::addRandomScoreFunction` [#1529](https://github.com/ruflin/Elastica/pull/1529)
* [Index Recovery](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-recovery.html) : the indices recovery API provides insight into on-going index shard recoveries. It was never been implemented into Elastica. [#1537](https://github.com/ruflin/Elastica/pull/1537)
* add parent_id (reference [#1518](https://github.com/ruflin/Elastica/issues/1518)) in QueryBuilder. [#1533]([#1518](https://github.com/ruflin/Elastica/issues/1533))
Expand Down
1 change: 0 additions & 1 deletion lib/Elastica/Transport/Guzzle.php
Expand Up @@ -95,7 +95,6 @@ public function exec(Request $request, array $params)
[
'request_header' => $request->getMethod(),
'http_code' => $res->getStatusCode(),
'body' => $responseBody,
]
);

Expand Down

0 comments on commit b300234

Please sign in to comment.