dosubot[bot] commented on issue #30670: URL: https://github.com/apache/superset/issues/30670#issuecomment-2428495193
<!-- Answer --> If the issue with Superset being stuck in a loading state is not related to async queries and caching, consider checking the following areas: 1. **Static Assets**: Ensure that static assets are loading correctly. Superset preloads static assets using `<link rel="preload" as="style">` tags, and these need to be correctly set up. If the `assets_prefix` is not set correctly or the assets are not available at the specified paths, it could cause loading issues <sup>[[1]](https://github.com/apache/superset/blob/master/superset/templates/superset/basic.html)</sup>. 2. **Session Management**: Verify that session management is configured properly. Misconfigurations in session settings, such as `SESSION_COOKIE_SECURE` being set to `True` without HTTPS, can cause issues. Also, check if server-side sessions are enabled and if there are any issues with the session backend, like Redis <sup>[[2]](https://github.com/apache/superset/blob/master/docs/docs/security/security.mdx)</sup>. 3. **Browser Console**: Check the browser's developer console for any JavaScript errors or failed network requests that might indicate what is causing the loading issue. 4. **Logs**: Review the Superset logs for any errors or warnings that could provide more insight into the problem. These steps should help identify the root cause of the loading issue. If you have specific error messages or logs, they could provide more clues. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* -- 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]
