Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for requests_deadline (0.34 sec)

  1. internal/config/api/api.go

    			Value: "9223372036854775807",
    		},
    	}
    )
    
    // Config storage class configuration
    type Config struct {
    	RequestsMax                 int           `json:"requests_max"`
    	RequestsDeadline            time.Duration `json:"requests_deadline"`
    	ClusterDeadline             time.Duration `json:"cluster_deadline"`
    	CorsAllowOrigin             []string      `json:"cors_allow_origin"`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 28 01:08:07 GMT 2024
    - 11.1K bytes
    - Viewed (1)
  2. cmd/handler-api.go

    		// but new requests will use the new limit.
    		// There will be a short overlap window,
    		// but this shouldn't last long.
    		t.requestsPool = make(chan struct{}, apiRequestsMaxPerNode)
    	}
    	t.requestsDeadline = cfg.RequestsDeadline
    	listQuorum := cfg.ListQuorum
    	if listQuorum == "" {
    		listQuorum = "strict"
    	}
    	t.listQuorum = listQuorum
    	if globalReplicationPool != nil &&
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top