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
Pretty much all calls to authorizer functions use r.Context() as their context.
The problem is that many operations inside of Incus run in the background, basically immediately returning to the client while continuing to process the request in the background.
In that scenario, as soon as the client is sent the background operation response, the request context is canceled, which then makes anything else using that context fail.
The text was updated successfully, but these errors were encountered:
Pretty much all calls to authorizer functions use r.Context() as their context.
The problem is that many operations inside of Incus run in the background, basically immediately returning to the client while continuing to process the request in the background.
In that scenario, as soon as the client is sent the background operation response, the request context is canceled, which then makes anything else using that context fail.
The text was updated successfully, but these errors were encountered: