We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76eaada commit 049ebe1Copy full SHA for 049ebe1
components/ws-proxy/cmd/run.go
@@ -128,7 +128,9 @@ var runCmd = &cobra.Command{
128
grpcOpts := common_grpc.DefaultClientOptions()
129
grpcOpts = append(grpcOpts, dialOption)
130
131
+ log.Info("Attempting to dial ws-manager, it's a blocking call that retries...")
132
conn, err := grpc.Dial(wsm.Addr, grpcOpts...)
133
+ // you will never get here if ws-manager is crashing, instead the readiness check for ws-proxy will restart the pod
134
if err != nil {
135
log.WithError(err).Fatal("cannot connect to ws-manager")
136
}
0 commit comments