File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
x-pack/qa/rolling-upgrade/src/test/java/org/elasticsearch/upgrades Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 66package org .elasticsearch .upgrades ;
77
88import org .apache .http .util .EntityUtils ;
9+ import org .elasticsearch .Version ;
910import org .elasticsearch .client .Request ;
1011import org .elasticsearch .client .RequestOptions ;
1112import org .elasticsearch .client .Response ;
1819import static org .hamcrest .Matchers .not ;
1920
2021public class WatcherRestartIT extends AbstractUpgradeTestCase {
22+ private static final Version UPGRADE_FROM_VERSION =
23+ Version .fromString (System .getProperty ("tests.upgrade_from_version" ));
2124
2225 public void testWatcherRestart () throws Exception {
26+ assumeFalse ("https://github.com/elastic/elasticsearch/issues/54220" , UPGRADE_FROM_VERSION .onOrAfter (Version .V_7_7_0 ));
2327 client ().performRequest (new Request ("POST" , "/_watcher/_stop" ));
2428 ensureWatcherStopped ();
2529
You can’t perform that action at this time.
0 commit comments