Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for responses (0.4 sec)

  1. pilot/pkg/xds/delta_test.go

    			staticCluster: "",
    			updateCluster: "",
    		},
    	})
    
    	// Expect that we send an EDS response even though there was no request
    	resp := ads.ExpectResponse()
    	if resp.TypeUrl != v3.EndpointType {
    		t.Fatalf("unexpected response type %v. Expected dependent EDS response", resp.TypeUrl)
    	}
    	// we must NOT get the cluster back
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    }
    
    // initRegistryEventHandlers sets up event handlers for config and service updates
    func (s *Server) initRegistryEventHandlers() {
    	log.Info("initializing registry event handlers")
    	// Flush cached discovery responses whenever services configuration change.
    	serviceHandler := func(prev, curr *model.Service, event model.Event) {
    		pushReq := &model.PushRequest{
    			Full:           true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    		f.Run("-p", "udp", "--dport", "53", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "1")
    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    		f.Run("-p", "udp", "--sport", "15053", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "2")
    	}
    	for _, gid := range split(proxyGID) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/context.go

    	node.Lock()
    	defer node.Unlock()
    
    	node.WatchedResources[typeURL] = &WatchedResource{TypeUrl: typeURL, ResourceNames: names}
    	// For all EDS requests that we have already responded with in the same stream let us
    	// force the response. It is important to respond to those requests for Envoy to finish
    	// warming of those resources(Clusters).
    	// This can happen with the following sequence
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/endpointshards.go

    		pushType = FullPush
    	}
    
    	// Clear the cache here. While it would likely be cleared later when we trigger a push, a race
    	// condition is introduced where an XDS response may be generated before the update, but not
    	// completed until after a response after the update. Essentially, we transition from v0 -> v1 ->
    	// v0 -> invalidate -> v1. Reverting a change we pushed violates our contract of monotonically
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top