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
Based on those lines implementing the context.Context interface, Gin should either proxy those calls to c.Request.Context() or otherwise not implement context.Context at all. This leads to mistakes and errors since one can think Gin's context will behave as a request context...
Same with the value storage which should also go into the request context in my opinion if you really want to implement context.Context.
The text was updated successfully, but these errors were encountered:
Hello,
Based on those lines implementing the
context.Context
interface, Gin should either proxy those calls toc.Request.Context()
or otherwise not implementcontext.Context
at all. This leads to mistakes and errors since one can think Gin's context will behave as a request context...Same with the value storage which should also go into the request context in my opinion if you really want to implement
context.Context
.The text was updated successfully, but these errors were encountered: