This is an automated email from the ASF dual-hosted git repository.

arivero pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 20cc3345d89 chore(playwright): Using warning for timeouts (#38441)
20cc3345d89 is described below

commit 20cc3345d89311ec7e91f16c2ba0ed8696224a19
Author: Antonio Rivero <[email protected]>
AuthorDate: Thu Mar 5 14:15:10 2026 +0100

    chore(playwright): Using warning for timeouts (#38441)
---
 superset/utils/webdriver.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/utils/webdriver.py b/superset/utils/webdriver.py
index 98604548592..416d3f0e5bf 100644
--- a/superset/utils/webdriver.py
+++ b/superset/utils/webdriver.py
@@ -303,7 +303,7 @@ class WebDriverPlaywright(WebDriverProxy):
                     for loading_element in page.locator(".loading").all():
                         loading_element.wait_for(state="detached")
                 except PlaywrightTimeout:
-                    logger.exception(
+                    logger.warning(
                         "Timed out waiting for charts to load at url %s", url
                     )
                     raise

Reply via email to