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

SearchResponse.Documents throws null reference exception on successful call #8340

Closed
stromblom opened this issue Sep 9, 2024 · 6 comments
Closed

Comments

@stromblom
Copy link

stromblom commented Sep 9, 2024

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.

@stromblom stromblom added 8.x Relates to 8.x client version Category: Bug labels Sep 9, 2024
@lucacremonesi
Copy link

From Microsoft's Property Design - Framework Design Guidelines:

❌ AVOID throwing exceptions from property getters.
Property getters should be simple operations and should not have any preconditions. If a getter can throw an exception, it should probably be redesigned to be a method.

@flobernd
Copy link
Member

flobernd commented Feb 6, 2025

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 😉

sadeghpour pushed a commit to sadeghpour/elasticsearch-net that referenced this issue Mar 4, 2025
- 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
sadeghpour added a commit to sadeghpour/elasticsearch-net that referenced this issue Mar 4, 2025
- 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
@flobernd
Copy link
Member

flobernd commented Mar 4, 2025

@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 HitsMetadata is not expected to be null.

@flobernd
Copy link
Member

@stromblom @lucacremonesi We were not able to reproduce this behavior. It would be great, if you could provide a reproducer.

Copy link
Contributor

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.

Copy link
Contributor

This issue was closed because it has been stalled for 2 days with no activity.

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants