Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isErrReadQuorum (0.05 sec)

  1. cmd/erasure-multipart-conditional_test.go

    				// Precondition fails if object exists (ETag is not empty)
    				return oi.ETag != ""
    			},
    		}
    
    		_, err := obj.NewMultipartUpload(ctx, bucket, object, opts)
    		if !isErrReadQuorum(err) {
    			t.Errorf("Expected read quorum error when if-none-match is used with quorum failure, got: %v", err)
    		}
    	})
    
    	t.Run("if-match with wrong ETag and read quorum failure", func(t *testing.T) {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. cmd/erasure-object-conditional_test.go

    				return oi.ETag != ""
    			},
    		}
    
    		_, err := obj.PutObject(ctx, bucket, object,
    			mustGetPutObjReader(t, bytes.NewReader([]byte("new-value")),
    				int64(len("new-value")), "", ""), opts)
    		if !isErrReadQuorum(err) {
    			t.Errorf("Expected read quorum error when if-none-match is used with quorum failure, got: %v", err)
    		}
    	})
    
    	t.Run("if-match with read quorum failure", func(t *testing.T) {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 24 04:05:31 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top