-
Notifications
You must be signed in to change notification settings - Fork 14.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There was an issue fetching the favorite status of this dashboard #6824
Comments
we are having the same problem really weirdly, we thought it was because the CORS was disable on Superset Config, but after we enable it and re-deploy we still have the same problem. Because we are resolving other issues with removing the SQLite and replacing it with PSSQL on RDS , I dont know if they may be related or adding to it , or none of them . But maybe you should try enable the CORS in superset config and maybe it works for you |
modern browser doesn't like to mix https ajax in a http requested page. Can you set page dash.gorillascode.com with https request? |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue |
Try setting |
We are using nginx as a reverse proxy for superset and faced with this issue. Superset is running in docker container and nginx is on the host system.
|
There is a quick fix to this; the front-end is calling the wrong API and getting redirected with the wrong protocol if you are using HTTPS. The fix is adding a trailing '/' to the call. I created a PR for it, but I am not allowed to push the branch |
Reading up on how to submit a fix :) |
…apache#6824 Issue: When Superset is running behind a reverse proxy and the dashboard page is requested with HTTPS protocol, the frontend can't retrieve the favorite status of the dashboard and, instead, displays the following toast message: 'There was an issue fetching the favorite status of this dashboard.' Cause: While the API exposes the /favestar/Dashboard/{id}/count/ endpoint, the frontend executes an API call to /favestar/Dashboard/{id}/count, which leads to a redirect to an endpoint with HTTP protocol Fix: Call the correct endpoint
…#6824 (#8013) Issue: When Superset is running behind a reverse proxy and the dashboard page is requested with HTTPS protocol, the frontend can't retrieve the favorite status of the dashboard and, instead, displays the following toast message: 'There was an issue fetching the favorite status of this dashboard.' Cause: While the API exposes the /favestar/Dashboard/{id}/count/ endpoint, the frontend executes an API call to /favestar/Dashboard/{id}/count, which leads to a redirect to an endpoint with HTTP protocol Fix: Call the correct endpoint
set ENV |
…apache#6824 (apache#8013) Issue: When Superset is running behind a reverse proxy and the dashboard page is requested with HTTPS protocol, the frontend can't retrieve the favorite status of the dashboard and, instead, displays the following toast message: 'There was an issue fetching the favorite status of this dashboard.' Cause: While the API exposes the /favestar/Dashboard/{id}/count/ endpoint, the frontend executes an API call to /favestar/Dashboard/{id}/count, which leads to a redirect to an endpoint with HTTP protocol Fix: Call the correct endpoint
Make sure these boxes are checked before submitting your issue - thank you!
Superset version
0.29.0rc7
Expected results
Nenhum notificação de problemas
Actual results
A notification with the following message
Steps to reproduce
Open a dashborad
The text was updated successfully, but these errors were encountered: