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 authored and matthewabbott committed Oct 4, 2024
1 parent 53a6317 commit fbe4463
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2394,7 +2394,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 fbe4463

Please sign in to comment.