-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
515: Fix error propagating logic r=ellnix a=ellnix # Pull Request ## Related issue Fixes #513 ## What does this PR do? - Meilisearch::ApiError parses a server's JSON response into its ``@http_body`` instance variable which stores a hash. - When `version_error_handler` propagates `ApiError`, it passes the ``@http_body`` hash as http body which causes `ApiError` to attempt to parse it again as JSON, throwing a `TypeError`. - This PR makes the `http_body` parameter polymorphic, allowing either a hash or a JSON string to be passed. Co-authored-by: ellnix <103502144+ellnix@users.noreply.github.com>
- Loading branch information
Showing
2 changed files
with
39 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters