Skip to content

Commit

Permalink
Longer timeout for local node startup during CI
Browse files Browse the repository at this point in the history
Sometimes CI is slow enough that the 2 min timeout fails. Extending it.

Seen in CI failure from elastic#109139
  • Loading branch information
henningandersen committed May 29, 2024
1 parent f73fedc commit af8be93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public abstract class AbstractLocalClusterFactory<S extends LocalClusterSpec, H
implements
LocalClusterFactory<S, H> {
private static final Logger LOGGER = LogManager.getLogger(AbstractLocalClusterFactory.class);
private static final Duration NODE_UP_TIMEOUT = Duration.ofMinutes(2);
private static final Duration NODE_UP_TIMEOUT = Duration.ofMinutes(3);
private static final Map<Pair<Version, DistributionType>, DistributionDescriptor> TEST_DISTRIBUTIONS = new ConcurrentHashMap<>();
private static final String TESTS_CLUSTER_MODULES_PATH_SYSPROP = "tests.cluster.modules.path";
private static final String TESTS_CLUSTER_PLUGINS_PATH_SYSPROP = "tests.cluster.plugins.path";
Expand Down

0 comments on commit af8be93

Please sign in to comment.