Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLI-1026: Catch malformed responses #382

Merged
merged 1 commit into from
May 2, 2023

Conversation

danepowell
Copy link
Collaborator

@danepowell danepowell commented May 2, 2023

We are seeing a lot of errors like property_exists(): Argument #1 ($object_or_class) must be of type object|string, null given in Client::processResponse(). This occurs when the body of the response is empty. Logs indicate the API returning 200 for these requests.

The only way I could imagine this happening is if the API is returning a truly empty response. Since it's returning a 200 response, it can't be caught as a BadResponseException in Client::makeRequest(), and any other type of connection error (i.e., connection reset) should generate an exception prior to the typeerror being thrown (barring a bug like guzzle/guzzle#2203).

Anyway, checking for an empty body and logging additional details about the request will help diagnose this. Since this is basically debugging code, I'm not trying to make it pretty. If it's going to be permanent, the exception should probably be its own class.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant