diff --git a/x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/test/AbstractWatcherIntegrationTestCase.java b/x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/test/AbstractWatcherIntegrationTestCase.java index 0c1377ac79767..d276718ce2f7a 100644 --- a/x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/test/AbstractWatcherIntegrationTestCase.java +++ b/x-pack/plugin/watcher/src/test/java/org/elasticsearch/xpack/watcher/test/AbstractWatcherIntegrationTestCase.java @@ -117,6 +117,9 @@ protected Settings nodeSettings(int nodeOrdinal) { .put("xpack.watcher.execution.scroll.size", randomIntBetween(1, 100)) .put("xpack.watcher.watch.scroll.size", randomIntBetween(1, 100)) .put("index.lifecycle.history_index_enabled", false) + // SLM can cause timing issues during testsuite teardown: https://github.com/elastic/elasticsearch/issues/50302 + // SLM is not required for tests extending from this base class and only add noise. + .put("xpack.slm.enabled", false) .build(); }