We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Cast
No response
None
Currently the jwt will not be included in the requests made by RuntimeTransport:
RuntimeTransport
foundry/crates/common/src/provider/runtime_transport.rs
Lines 153 to 159 in 23700c9
This is because the alloy ToString implementation ignores any details of the bearer token: https://github.com/alloy-rs/alloy/blob/b9f9f9f08db3cba4d3ac9d79d88c18005763bd57/crates/transport/src/common.rs#L48-L55
This will be set as a header value here:
Line 158 in 23700c9
which means the header will just be Bearer
Bearer
The text was updated successfully, but these errors were encountered:
should be fixed by alloy-rs/alloy#772
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Component
Cast
Have you ensured that all of these are up to date?
What version of Foundry are you on?
No response
What command(s) is the bug in?
No response
Operating System
None
Describe the bug
Currently the jwt will not be included in the requests made by
RuntimeTransport
:foundry/crates/common/src/provider/runtime_transport.rs
Lines 153 to 159 in 23700c9
This is because the alloy ToString implementation ignores any details of the bearer token:
https://github.com/alloy-rs/alloy/blob/b9f9f9f08db3cba4d3ac9d79d88c18005763bd57/crates/transport/src/common.rs#L48-L55
This will be set as a header value here:
foundry/crates/common/src/provider/runtime_transport.rs
Line 158 in 23700c9
which means the header will just be
Bearer
The text was updated successfully, but these errors were encountered: