dosubot[bot] commented on issue #33157: URL: https://github.com/apache/superset/issues/33157#issuecomment-2811378692
<!-- Greeting --> Hello @qlands! π I'm [Dosu](https://dosu.dev), your friendly bot here to help you solve bugs, answer questions, and guide you on your way to becoming a contributor. I'm ready to assist while you wait for a human maintainer. Letβs tackle this together! π <!-- Answer --> The "INTERNAL SERVER ERROR" when fetching favorite status after upgrading from version 3.0.1 to 4.1.2 could be related to changes in how transactions are committed for favorite actions. A specific change in version 4.1.2 addressed an issue where favorite/unfavorite actions for charts and dashboards were not committing transactions properly <sup>[[1]](https://github.com/apache/superset/blob/master/CHANGELOG/4.1.0.md)</sup>. Additionally, the error messages in your console related to `TranslatorSingleton.ts` suggest that the translator might not be configured correctly before use. The `TranslatorSingleton.ts` file manages translations and requires proper configuration before calling translation methods. Ensure that the translator is configured as expected in your setup <sup>[[2]](https://github.com/apache/superset/blob/master/superset-frontend/packages/superset-ui-core/src/translation/TranslatorSingleton.ts)</sup>. For the HTTP 500 errors, these are typically caused by unhandled exceptions during API requests. Check the server logs for any stack traces or error messages that could provide more insight into the issue. The configuration settings in `Config.py` seem standard, but ensure that your database connection is stable and that there are no connectivity issues <sup>[[3]](https://github.com/apache/superset/blob/master/superset/dashboards/api.py)</sup>. Review these areas to identify and resolve the issue. <!-- 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/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/c80f575d-7373-4c41-9c45-59689cec9be9?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]
