File tree 1 file changed +2
-2
lines changed
server/src/test/java/org/elasticsearch/indices/state 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -192,7 +192,7 @@ public void testDelayedMappingPropagationOnPrimary() throws Exception {
192
192
Settings settings = Settings .builder ()
193
193
.put (DiscoverySettings .COMMIT_TIMEOUT_SETTING .getKey (), "30s" ) // explicitly set so it won't default to publish timeout
194
194
.put (DiscoverySettings .PUBLISH_TIMEOUT_SETTING .getKey (), "0s" ) // don't wait post commit as we are blocking things by design
195
- .put (TestZenDiscovery .USE_ZEN2 .getKey (), false ) // stops 1 node out of 2
195
+ .put (TestZenDiscovery .USE_ZEN2 .getKey (), false ) // TODO: convert test to support Zen2
196
196
.build ();
197
197
final List <String > nodeNames = internalCluster ().startNodes (2 , settings );
198
198
assertFalse (client ().admin ().cluster ().prepareHealth ().setWaitForNodes ("2" ).get ().isTimedOut ());
@@ -307,7 +307,7 @@ public void testDelayedMappingPropagationOnReplica() throws Exception {
307
307
Settings .builder ()
308
308
.put (DiscoverySettings .COMMIT_TIMEOUT_SETTING .getKey (), "30s" ) // explicitly set so it won't default to publish timeout
309
309
.put (DiscoverySettings .PUBLISH_TIMEOUT_SETTING .getKey (), "0s" ) // don't wait post commit as we are blocking things by design
310
- .put (TestZenDiscovery .USE_ZEN2 .getKey (), false ) // stops 1 node out of 2
310
+ .put (TestZenDiscovery .USE_ZEN2 .getKey (), false ) // TODO: convert test to support Zen2
311
311
.build ());
312
312
assertFalse (client ().admin ().cluster ().prepareHealth ().setWaitForNodes ("2" ).get ().isTimedOut ());
313
313
You can’t perform that action at this time.
0 commit comments