Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for errBusy (0.07 sec)

  1. cmd/healthcheck-handler.go

    		writeResponse(w, http.StatusOK, nil, mimeNone)
    		return
    	}
    
    	if int(globalHTTPStats.loadRequestsInQueue()) > globalAPIConfig.getRequestsPoolCapacity() {
    		apiErr := getAPIError(ErrBusy)
    		switch r.Method {
    		case http.MethodHead:
    			writeResponse(w, apiErr.HTTPStatusCode, nil, mimeNone)
    		case http.MethodGet:
    			writeErrorResponse(r.Context(), w, apiErr, r.URL)
    		}
    		return
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 26 07:44:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrHealOverlappingPaths-224]
    	_ = x[ErrIncorrectContinuationToken-225]
    	_ = x[ErrEmptyRequestBody-226]
    	_ = x[ErrUnsupportedFunction-227]
    	_ = x[ErrInvalidExpressionType-228]
    	_ = x[ErrBusy-229]
    	_ = x[ErrUnauthorizedAccess-230]
    	_ = x[ErrExpressionTooLong-231]
    	_ = x[ErrIllegalSQLFunctionArgument-232]
    	_ = x[ErrInvalidKeyPath-233]
    	_ = x[ErrInvalidCompressionFormat-234]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  3. internal/s3select/unused-errors.go

    	}
    }
    
    // //////////////////////////////////////////////////////////////////////
    //
    //	Generic S3 HTTP handler errors.
    //
    // //////////////////////////////////////////////////////////////////////
    func errBusy(err error) *s3Error {
    	return &s3Error{
    		code:       "Busy",
    		message:    "The service is unavailable. Please retry.",
    		statusCode: 503,
    		cause:      err,
    	}
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Feb 20 08:16:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    	ErrHealMissingBucket
    	ErrHealAlreadyRunning
    	ErrHealOverlappingPaths
    	ErrIncorrectContinuationToken
    
    	// S3 Select Errors
    	ErrEmptyRequestBody
    	ErrUnsupportedFunction
    	ErrInvalidExpressionType
    	ErrBusy
    	ErrUnauthorizedAccess
    	ErrExpressionTooLong
    	ErrIllegalSQLFunctionArgument
    	ErrInvalidKeyPath
    	ErrInvalidCompressionFormat
    	ErrInvalidFileHeaderInfo
    	ErrInvalidJSONType
    	ErrInvalidQuoteFields
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 01 22:13:18 UTC 2024
    - 92.1K bytes
    - Viewed (0)
Back to top