We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When there's a read timeout, the response looks something like this:
FusionAuth\ClientResponse::__set_state(array( 'errorResponse' => NULL, 'exception' => NULL, 'method' => 'PATCH', 'request' => array ( 'user' => array ( /* ... */ ), ), 'successResponse' => NULL, 'status' => 0, ))
i.e. The errorResponse, exception, and successResponse are all NULL.
errorResponse
exception
successResponse
NULL
I think the code needs to use curl_errno to check for errors.
curl_errno
The text was updated successfully, but these errors were encountered:
Thanks for filing this @glen-84 . We're looking at overhauling our client libraries and will take a look at this.
Sorry, something went wrong.
No branches or pull requests
When there's a read timeout, the response looks something like this:
i.e. The
errorResponse
,exception
, andsuccessResponse
are allNULL
.I think the code needs to use
curl_errno
to check for errors.The text was updated successfully, but these errors were encountered: