mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
integration: add FailFast(false) to failing tests
This commit is contained in:
parent
129b271ff8
commit
6b7891d5f1
@ -572,7 +572,7 @@ func TestV3StorageQuotaAPI(t *testing.T) {
|
||||
|
||||
// test small put that fits in quota
|
||||
smallbuf := make([]byte, 512)
|
||||
if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}); err != nil {
|
||||
if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}, grpc.FailFast(false)); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
@ -619,7 +619,7 @@ func TestV3StorageQuotaApply(t *testing.T) {
|
||||
|
||||
// test small put still works
|
||||
smallbuf := make([]byte, 1024)
|
||||
_, serr := kvc0.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf})
|
||||
_, serr := kvc0.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}, grpc.FailFast(false))
|
||||
if serr != nil {
|
||||
t.Fatal(serr)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user