mirror of
https://github.com/ceph/ceph
synced 2025-01-19 09:32:00 +00:00
Merge pull request #50114 from rhcs-dashboard/cephadm-prom-401-error
mgr/dashboard: ignore the rules 400 error in dashboard kcli e2e Reviewed-by: Pegonzal <NOT@FOUND> Reviewed-by: Avan Thakkar <athakkar@redhat.com>
This commit is contained in:
commit
8ea1623541
@ -8,5 +8,11 @@ afterEach(() => {
|
||||
});
|
||||
|
||||
Cypress.on('uncaught:exception', (err: Error) => {
|
||||
return !err.message.includes('ResizeObserver loop limit exceeded');
|
||||
if (
|
||||
err.message.includes('ResizeObserver loop limit exceeded') ||
|
||||
err.message.includes('api/prometheus/rules')
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user