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
As discussed in #38, the Endpoint impl for ErrorInto is missing extension forwarding and falls back to the basic impl Endpoint returning None, meaning no extensions will get invoked.
The effects of this bug are that any Endpoint wrapped in ErrorInto will ignore any extension present.
In the sample, PKCE extension is present on Extended<> and should be invoked.
But the wrapping in ErrorInto in with_sollicitor prevents that because of the present bug.
Tracking pull request
A pull request (does not yet exist)
The text was updated successfully, but these errors were encountered:
Bug report
As discussed in #38, the
Endpoint impl for ErrorInto
is missing extension forwarding and falls back to the basicimpl Endpoint
returningNone
, meaning no extensions will get invoked.The effects of this bug are that any Endpoint wrapped in ErrorInto will ignore any extension present.
Reproduction
thespooler/oxide-actix-pcke@558480d
Expected behaviour
In the sample, PKCE extension is present on
Extended<>
and should be invoked.But the wrapping in
ErrorInto
inwith_sollicitor
prevents that because of the present bug.Tracking pull request
The text was updated successfully, but these errors were encountered: