-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix introspection query deduplication (#6257)
Introspection queries are not supposed to be cached, but their result still needs to be sent to deduplicated queries. This also fixes a case where errors returned by `poll_ready` were not sent to deduplicated queries
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### Fix introspection query deduplication ([Issue #6249](https://github.com/apollographql/router/issues/6249)) | ||
|
||
To reduce CPU usage, query planning and introspection queries are deduplicated. In some cases, deduplicated introspection queries were not receiving their result. This makes sure that answers are sent in all cases. | ||
|
||
By [@Geal](https://github.com/Geal) in https://github.com/apollographql/router/pull/6257 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters