Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for forwardToEnvoy (0.14 sec)

  1. pkg/istio-agent/xds_proxy.go

    						// Forward the response using the thread of `handleUpstreamResponse`
    						// to prevent concurrent access to forwardToEnvoy
    						select {
    						case forwardEnvoyCh <- resp:
    						case <-con.stopChan:
    						}
    					})
    				} else {
    					// Otherwise, forward ECDS resource update directly to Envoy.
    					forwardToEnvoy(con, resp)
    				}
    			default:
    				if strings.HasPrefix(resp.TypeUrl, model.DebugType) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta.go

    					go p.deltaRewriteAndForward(con, resp, func(resp *discovery.DeltaDiscoveryResponse) {
    						// Forward the response using the thread of `handleUpstreamResponse`
    						// to prevent concurrent access to forwardToEnvoy
    						select {
    						case forwardEnvoyCh <- resp:
    						case <-con.stopChan:
    						}
    					})
    				} else {
    					// Otherwise, forward ECDS resource update directly to Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top