Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for errKind (0.12 sec)

  1. internal/config/notify/parse.go

    	"github.com/rabbitmq/amqp091-go"
    )
    
    const (
    	formatNamespace = "namespace"
    )
    
    const (
    	logSubsys = "notify"
    )
    
    func logOnceIf(ctx context.Context, err error, id string, errKind ...any) {
    	logger.LogOnceIf(ctx, logSubsys, err, id, errKind...)
    }
    
    // ErrTargetsOffline - Indicates single/multiple target failures.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.5K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    				Status:    madmin.ReplicateRemoveStatusPartial,
    				ErrDetail: fmt.Sprintf("unable to remove cluster-replication state on local: %v", err),
    			}, nil
    		}
    		if errdID != "" {
    			err := errs[errdID]
    			return madmin.ReplicateRemoveStatus{
    				Status:    madmin.ReplicateRemoveStatusPartial,
    				ErrDetail: err.Error(),
    			}, nil
    		}
    		return madmin.ReplicateRemoveStatus{
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 184.8K bytes
    - Viewed (1)
  3. cmd/bucket-replication.go

    		if !opts.CheckRemoteBucket && opts.CheckReady {
    			endpoint := clnt.EndpointURL().String()
    			if errInt, ok := opts.checkReadyErr.Load(endpoint); !ok {
    				err = checkRemoteEndpoint(ctx, clnt.EndpointURL())
    				opts.checkReadyErr.Store(endpoint, err)
    			} else {
    				if errInt == nil {
    					err = nil
    				} else {
    					err, _ = errInt.(error)
    				}
    			}
    			switch err.(type) {
    			case BucketRemoteIdenticalToSource:
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 118.2K bytes
    - Viewed (0)
Back to top