Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithWatchTerminationDuringShutdown (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    		select {
    		case <-s.ServerShuttingDownCh:
    			// the server has signaled that it is shutting down (not accepting
    			// any new request), all active watch request(s) should return
    			// immediately here. The WithWatchTerminationDuringShutdown server
    			// filter will ensure that the response to the client is rate
    			// limited in order to avoid any thundering herd issue when the
    			// client(s) try to reestablish the WATCH on the other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/config.go

    	handler = genericfilters.WithWaitGroup(handler, c.LongRunningFunc, c.NonLongRunningRequestWaitGroup)
    	if c.ShutdownWatchTerminationGracePeriod > 0 {
    		handler = genericfilters.WithWatchTerminationDuringShutdown(handler, c.lifecycleSignals, c.WatchRequestWaitGroup)
    	}
    	if c.SecureServing != nil && !c.SecureServing.DisableHTTP2 && c.GoawayChance > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top