Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
Back to top