Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsOperationFinishedError (0.35 sec)

  1. pkg/volume/util/types/types.go

    func NewUncertainProgressError(msg string) *UncertainProgressError {
    	return &UncertainProgressError{msg: msg}
    }
    
    // IsOperationFinishedError checks if given error is of type that indicates
    // operation is finished with a FINAL error.
    func IsOperationFinishedError(err error) bool {
    	if _, ok := err.(*UncertainProgressError); ok {
    		return false
    	}
    	if _, ok := err.(*TransientOperationFailure); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top