-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
SearchResponse.Documents throws null reference exception on successful call #8340
Comments
From Microsoft's Property Design - Framework Design Guidelines:
|
Thanks @lucacremonesi but not sure what your intention is with posting this quote? This issue is marked as "bug" which should make it clear that this exception is not thrown by design 😉 |
- Added null checks for `HitsMetadata` in `SearchResponse<T>.Documents` - Ensured `HitsMetadata` and `Hits` are properly validated before accessing them - Prevented potential crashes when the response contains no hits
- Added null checks for `HitsMetadata` in `SearchResponse<T>.Documents` - Ensured `HitsMetadata` and `Hits` are properly validated before accessing them - Prevented potential crashes when the response contains no hits
@stromblom @lucacremonesi Would it be possible for you to send me the JSON request and response that triggers this behavior? We are currently investigating this issue, since |
@stromblom @lucacremonesi We were not able to reproduce this behavior. It would be great, if you could provide a reproducer. |
This issue is stale because it has been open 5 days with no activity. Remove stale label or comment or this will be closed in 2 days. |
This issue was closed because it has been stalled for 2 days with no activity. |
Elastic.Clients.Elasticsearch version:
8.15.5
Description of the problem including expected versus actual behavior:
SearchResponse.Documents throws a null ref exception because HitsMetadata is null (and/or possibly HitsMetadata.Hits).
Stacktrace:
at Elastic.Clients.Elasticsearch.SearchResponse`1.get_Documents() in /_/src/Elastic.Clients.Elasticsearch.Shared/Api/SearchResponse.cs:line 21
Expected behavior
Should not throw an exception. HitsMetadata/Hits being null should be handled gracefully.
The Documents property and also Hits property should handle HitsMetadata being null and also declare correct nullability.
The text was updated successfully, but these errors were encountered: