Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,071 for nack (0.99 sec)

  1. releasenotes/notes/cds-nack-passthrough.yaml

    John Howard <******@****.***> 1657032928 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 05 14:55:28 UTC 2022
    - 224 bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_delta_test.go

    		},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Wait until nonce was updated, which represents an ACK/NACK has been received.
    	retry.UntilSuccessOrFail(t, func() error {
    		if proxy.ecdsLastNonce.Load() == n1.Load() {
    			return errors.New("last process nonce has not been updated. no ecds ack/nack is received yet")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. releasenotes/notes/30181.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: networking
    issue:
      - 30181
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 04 02:18:31 UTC 2021
    - 193 bytes
    - Viewed (0)
  4. pilot/pkg/xds/adstest.go

    func (a *AdsTest) RequestResponseNack(t test.Failer, req *discovery.DiscoveryRequest) *discovery.DiscoveryResponse {
    	t.Helper()
    	if req == nil {
    		req = &discovery.DiscoveryRequest{}
    	}
    	a.Request(t, req)
    	resp := a.ExpectResponse(t)
    	req.ResponseNonce = resp.Nonce
    	req.ErrorDetail = &status.Status{Message: "Test request NACK"}
    	a.Request(t, req)
    	return resp
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/deltaadstest.go

    		Node:          req.Node,
    		TypeUrl:       req.TypeUrl,
    		ResponseNonce: req.ResponseNonce,
    	})
    	return resp
    }
    
    // RequestResponseNack does a full XDS exchange with an error: Send a request, get a response, and NACK the response
    func (a *DeltaAdsTest) RequestResponseNack(req *discovery.DeltaDiscoveryRequest) *discovery.DeltaDiscoveryResponse {
    	a.t.Helper()
    	if req == nil {
    		req = &discovery.DeltaDiscoveryRequest{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. pkg/xds/server_test.go

    			response: true,
    		},
    		{
    			name: "ack",
    			proxy: &TestProxy{
    				WatchedResources: map[string]*WatchedResource{
    					model.ClusterType: {
    						NonceSent: "nonce",
    					},
    				},
    			},
    			request: &discovery.DiscoveryRequest{
    				TypeUrl:       model.ClusterType,
    				VersionInfo:   "v1",
    				ResponseNonce: "nonce",
    			},
    			response: false,
    		},
    		{
    			name: "ack forced",
    			proxy: &TestProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/grpcgen.go

    // and can't understand normal Istio RDS - in particular expects "" instead of "/" as
    // default prefix, and is expects just the route for one host.
    // handleAck will detect if the message is an ACK or NACK, and update/log/count
    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/match/match.go

    		// that fallback may be an empty map, so we re-queue onMatch in case it still needs fixing
    		onMatch.OnMatch = fallback.OnMatch
    		return []*matcher.Matcher_OnMatch{onMatch} // the inner mapper is gone
    	}
    
    	// envoy will nack this eventually
    	log.Warnf("empty mapper %v with no fallback", innerMapper.Matcher)
    	return innerMapper.allOnMatches()
    }
    
    func (m Mapper) allOnMatches() []*matcher.Matcher_OnMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/pack/pack.go

    	log.SetPrefix("pack: ")
    	telemetry.Start()
    	// need "pack op archive" at least.
    	if len(os.Args) < 3 {
    		log.Print("not enough arguments")
    		fmt.Fprintln(os.Stderr)
    		usage()
    	}
    	setOp(os.Args[1])
    	telemetry.Inc("pack/invocations")
    	telemetry.Inc("pack/op:" + string(op))
    	var ar *Archive
    	switch op {
    	case 'p':
    		ar = openArchive(os.Args[2], os.O_RDONLY, os.Args[3:])
    		ar.scan(ar.printContents)
    	case 'r':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. releasenotes/notes/double-ack.yaml

    John Howard <******@****.***> 1656720476 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 02 00:07:56 UTC 2022
    - 219 bytes
    - Viewed (0)
Back to top