@@ -66,31 +66,29 @@ func registerLOQRecovery(r registry.Registry) {
66
66
} {
67
67
testSpec := s
68
68
r .Add (registry.TestSpec {
69
- Name : s .testName ("" ),
70
- Owner : registry .OwnerKV ,
71
- Benchmark : true ,
72
- CompatibleClouds : registry .AllExceptAWS ,
73
- Suites : registry .Suites (registry .Nightly ),
74
- Cluster : spec ,
75
- Leases : registry .MetamorphicLeases ,
76
- SkipPostValidations : registry .PostValidationReplicaDivergence |
77
- registry .PostValidationInvalidDescriptors | registry .PostValidationNoDeadNodes ,
78
- NonReleaseBlocker : true ,
69
+ Name : s .testName ("" ),
70
+ Owner : registry .OwnerKV ,
71
+ Benchmark : true ,
72
+ CompatibleClouds : registry .AllExceptAWS ,
73
+ Suites : registry .Suites (registry .Nightly ),
74
+ Cluster : spec ,
75
+ Leases : registry .MetamorphicLeases ,
76
+ SkipPostValidations : registry .PostValidationAll ,
77
+ NonReleaseBlocker : true ,
79
78
Run : func (ctx context.Context , t test.Test , c cluster.Cluster ) {
80
79
runRecoverLossOfQuorum (ctx , t , c , testSpec )
81
80
},
82
81
})
83
82
r .Add (registry.TestSpec {
84
- Name : s .testName ("half-online" ),
85
- Owner : registry .OwnerKV ,
86
- Benchmark : true ,
87
- CompatibleClouds : registry .AllExceptAWS ,
88
- Suites : registry .Suites (registry .Nightly ),
89
- Cluster : spec ,
90
- Leases : registry .MetamorphicLeases ,
91
- SkipPostValidations : registry .PostValidationReplicaDivergence |
92
- registry .PostValidationInvalidDescriptors | registry .PostValidationNoDeadNodes ,
93
- NonReleaseBlocker : true ,
83
+ Name : s .testName ("half-online" ),
84
+ Owner : registry .OwnerKV ,
85
+ Benchmark : true ,
86
+ CompatibleClouds : registry .AllExceptAWS ,
87
+ Suites : registry .Suites (registry .Nightly ),
88
+ Cluster : spec ,
89
+ Leases : registry .MetamorphicLeases ,
90
+ SkipPostValidations : registry .PostValidationAll ,
91
+ NonReleaseBlocker : true ,
94
92
Run : func (ctx context.Context , t test.Test , c cluster.Cluster ) {
95
93
runHalfOnlineRecoverLossOfQuorum (ctx , t , c , testSpec )
96
94
},
0 commit comments