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
Newly merged feature of sampling for StreamableHttp doesn't work. Examples from sampling_http_server and sampling_http_client are now working. Client send request, but on step of waiting client response process stuck until timeout exceed.
select { case response := <-responseChan: if response.err != nil { return nil, response.err } return response.result, nil case <-ctx.Done(): return nil, ctx.Err() }
Server SSE sampling event doesn't catched and proceed by client.