Skip to content

Commit

Permalink
Relax timeout in waitForActiveLicense (elastic#113673)
Browse files Browse the repository at this point in the history
No sense in failing these tests just because the cluster took a bit too
long to start up.

Closes elastic#113343
  • Loading branch information
DaveCTurner committed Oct 3, 2024
1 parent c32f815 commit 6ec44f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2382,7 +2382,7 @@ protected static void waitForActiveLicense(final RestClient restClient) throws E
assertThat("Expecting non-null license status", status, notNullValue());
assertThat("Expecting active license", status, equalTo("active"));
}
});
}, 10, TimeUnit.MINUTES);
}

// TODO: replace usages of this with warning_regex or allowed_warnings_regex
Expand Down

0 comments on commit 6ec44f0

Please sign in to comment.