You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JsonApiToolkit/Controllers/JsonApiController.cs:577 catches Exception and falls back to a full entity load. That swallows cancellation, OOM, and DB timeouts as benign warnings.
Acceptance criteria
catch uses a when filter limited to the expected reflection / EF expression-build exceptions (mirror FilteredIncludeBuilder.cs:187 and QueryHelpers.cs:137)
OperationCanceledException is not caught
Test: cancelling a request during projection cancels rather than falling back
JsonApiToolkit/Controllers/JsonApiController.cs:577catchesExceptionand falls back to a full entity load. That swallows cancellation, OOM, and DB timeouts as benign warnings.Acceptance criteria
catchuses awhenfilter limited to the expected reflection / EF expression-build exceptions (mirrorFilteredIncludeBuilder.cs:187andQueryHelpers.cs:137)OperationCanceledExceptionis not caught