fix(truapi-server): raise the recursion limit for the request_login future - #493
Closed
decrypto21 wants to merge 1 commit into
Closed
fix(truapi-server): raise the recursion limit for the request_login future#493decrypto21 wants to merge 1 commit into
decrypto21 wants to merge 1 commit into
Conversation
Contributor
Author
|
Closed because of #475. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds
#![recursion_limit = "256"]totruapi-server. Closes #476.cargo +nightly clippyfails on all branches since 22 Aug. A recent nightly addedrecursion_depth_exceeding_limit;-D warningspromotes it to an error.Proving
request_login's boxed trait futureSendrecurses throughSsoPairingFlow::request_session, exceeding the default 128-step budget.Verification
pairing_host.rs:2423.mainis affected.Rust workspaceelsewhere is from runs of 04–21 Aug, predating the lint.fmt,clippy --workspace --all-targets --all-features -- -D warnings,test --workspace(23 suites, 1019 tests) pass.clippy 0.1.95(Jan 2026), predating the lint; it passes either way. CI here is authoritative.