Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re-throw ResponseException as AssertionError in BasicLicenseUpgradeIT (…
…#68046) It's possible that in a slow machine the cluster state updates take a while to be applied, the license information is published with NORMAL priority, meaning that it can take a while for the License information to become available. This can lead to race conditions. In order to wait until the license information is available, the tests use assertBusy, but assertBusy only retries if an AssertionException is raised, for that reason we use the ignore parameter in the http client and later check that the response was correct, meaning that the check can be retried if the license information is not ready yet. Closes #64578 Backport of #67182
- Loading branch information