dosubot[bot] commented on issue #33132: URL: https://github.com/apache/superset/issues/33132#issuecomment-2804552626
<!-- Greeting --> Hello @felixb! I'm [Dosu](https://dosu.dev), a bot here to help you with bugs, answer questions, and guide you on your journey as a contributor. I'm ready to assist you while you wait for a human maintainer. How can I help you today? <!-- Answer --> I found a similar solved discussion that might help you address the issue with the TimeoutError when generating thumbnails for dashboards without visible chart containers. In the discussion titled "[Selenium timed out waiting for chart containers to draw](https://github.com/apache/superset/discussions/31464)," it was suggested to increase the timeout duration in the `superset_config.py` file: ```python SCREENSHOT_LOCATE_WAIT = 30 SCREENSHOT_LOAD_WAIT = 60 ``` Additionally, ensure that your Playwright configuration is correctly set up. The default timeout for Playwright in Superset is 30,000 milliseconds (or 30 seconds), which might need to be adjusted if your dashboard takes longer to load <sup>[[1]](https://github.com/apache/superset/discussions/31464)</sup><sup>[[2]](https://github.com/apache/superset/blob/master/superset/config.py)</sup>. These adjustments should help in resolving the timeout issue by allowing more time for the dashboard elements to load, even if they initially contain only markdown text. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/ba59b2f4-7825-472e-bbe3-ad11aff49011?feedback_type=other)</sup> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
