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
When creating an HTTP receiver using the gin framework, there is an issue with the context when using the incoming channel from the CloudEvents SDK protocol. The context of the message received through the protocol's incoming channel is different from the gin context created with the HTTP request.
The message context is passed through the channel provided by the CloudEvents SDK protocol, while the gin context is created along with the HTTP request, resulting in two different contexts.
This can cause problems if you need to access the gin context during message processing. For example, you may not be able to access request headers, query parameters, or other information provided by the gin context.
To resolve this issue, you should consider either including the gin context in the message context or passing the gin context separately during message processing. However, even if you include the gin context in the message context, there is no guarantee that a proper response will be sent to the client if an error occurs in the Respond function.
When creating an HTTP receiver using the gin framework, there is an issue with the context when using the incoming channel from the CloudEvents SDK protocol. The context of the message received through the protocol's incoming channel is different from the gin context created with the HTTP request.
The message context is passed through the channel provided by the CloudEvents SDK protocol, while the gin context is created along with the HTTP request, resulting in two different contexts.
This can cause problems if you need to access the gin context during message processing. For example, you may not be able to access request headers, query parameters, or other information provided by the gin context.
To resolve this issue, you should consider either including the gin context in the message context or passing the gin context separately during message processing. However, even if you include the gin context in the message context, there is no guarantee that a proper response will be sent to the client if an error occurs in the Respond function.
this sample code
The text was updated successfully, but these errors were encountered: