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
gateway: wrap ExecProcessServer Send calls with a mutex
According to gRPC ClientStream interface documentation it isn't safe to call
SendMsg on the same stream in different goroutines, which we do in
LLBBridgeServer implementation. The generated bindings don't provide
a mechanism to avoid this scenario. This change wraps LLBBridgeServer
implementation with a custom locking behavior:
https://pkg.go.dev/google.golang.org/[email protected]#ClientStream.SendMsg
Signed-off-by: Matias Insaurralde <[email protected]>
0 commit comments