Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cluster_deadline (0.18 sec)

  1. internal/config/api/api.go

    // 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"`
    	RemoteTransportDeadline     time.Duration `json:"remote_transport_deadline"`
    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. docs/config/README.md

    ARGS:
    requests_max                    (number)    set the maximum number of concurrent requests (default: '0')
    requests_deadline               (duration)  set the deadline for API requests waiting to be processed (default: '10s')
    cluster_deadline                (duration)  set the deadline for cluster readiness check (default: '10s')
    cors_allow_origin               (csv)       set comma separated list of origins allowed for CORS requests (default: '*')
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 11 21:48:54 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  3. cmd/handler-api.go

    	return
    }
    
    func (t *apiConfig) init(cfg api.Config, setDriveCounts []int, legacy bool) {
    	t.mu.Lock()
    	defer t.mu.Unlock()
    
    	clusterDeadline := cfg.ClusterDeadline
    	if clusterDeadline == 0 {
    		clusterDeadline = 10 * time.Second
    	}
    	t.clusterDeadline = clusterDeadline
    	corsAllowOrigin := cfg.CorsAllowOrigin
    	if len(corsAllowOrigin) == 0 {
    		corsAllowOrigin = []string{"*"}
    	}
    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