Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. internal/config/notify/parse.go

    )
    
    const (
    	formatNamespace = "namespace"
    )
    
    const (
    	logSubsys = "notify"
    )
    
    func logOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, logSubsys, err, id, errKind...)
    }
    
    // ErrTargetsOffline - Indicates single/multiple target failures.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 47K 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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  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 Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
Back to top