File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/test/java/org/elasticsearch/indices/state Expand file tree Collapse file tree 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 {
192192 Settings settings = Settings .builder ()
193193 .put (DiscoverySettings .COMMIT_TIMEOUT_SETTING .getKey (), "30s" ) // explicitly set so it won't default to publish timeout
194194 .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
196196 .build ();
197197 final List <String > nodeNames = internalCluster ().startNodes (2 , settings );
198198 assertFalse (client ().admin ().cluster ().prepareHealth ().setWaitForNodes ("2" ).get ().isTimedOut ());
@@ -307,7 +307,7 @@ public void testDelayedMappingPropagationOnReplica() throws Exception {
307307 Settings .builder ()
308308 .put (DiscoverySettings .COMMIT_TIMEOUT_SETTING .getKey (), "30s" ) // explicitly set so it won't default to publish timeout
309309 .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
311311 .build ());
312312 assertFalse (client ().admin ().cluster ().prepareHealth ().setWaitForNodes ("2" ).get ().isTimedOut ());
313313
You can’t perform that action at this time.
0 commit comments