Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GOAWAY (0.1 sec)

  1. src/net/http/h2_bundle.go

    	cc.mu.Lock()
    	defer cc.mu.Unlock()
    
    	old := cc.goAway
    	cc.goAway = f
    
    	// Merge the previous and current GoAway error frames.
    	if cc.goAwayDebug == "" {
    		cc.goAwayDebug = string(f.DebugData())
    	}
    	if old != nil && old.ErrCode != http2ErrCodeNo {
    		cc.goAway.ErrCode = old.ErrCode
    	}
    	last := f.LastStreamID
    	for streamID, cs := range cc.streams {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.18.md

    - Apiserver add a new flag --goaway-chance which is the fraction of requests that will be closed gracefully(GOAWAY) to prevent HTTP/2 clients from getting stuck on a single apiserver. 
      After the connection closed(received GOAWAY), the client's other in-flight requests won't be affected, and the client will reconnect. 
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

    - Clients required to use go1.15.8+ or go1.16+ if kube-apiserver has the goaway feature enabled to avoid unexpected data race condition. ([#98809](https://github.com/kubernetes/kubernetes/pull/98809), [@answer1991](https://github.com/answer1991))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top