Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for errBusy (0.06 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 Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Jun 26 07:44:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrHealOverlappingPaths-228]
    	_ = x[ErrIncorrectContinuationToken-229]
    	_ = x[ErrEmptyRequestBody-230]
    	_ = x[ErrUnsupportedFunction-231]
    	_ = x[ErrInvalidExpressionType-232]
    	_ = x[ErrBusy-233]
    	_ = x[ErrUnauthorizedAccess-234]
    	_ = x[ErrExpressionTooLong-235]
    	_ = x[ErrIllegalSQLFunctionArgument-236]
    	_ = x[ErrInvalidKeyPath-237]
    	_ = x[ErrInvalidCompressionFormat-238]
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K 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 Dec 28 19:28:13 UTC 2025
    - 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 Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 93K bytes
    - Viewed (3)
Back to top