Make sure these boxes are checked before submitting your issue - thank you!
0.29.0rc7
Nenhum notifica莽茫o de problemas
A notification with the following message
There was an issue fetching the favorite status of this dashboard.
Notification
Log javascript
Open a dashborad
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 .pinned to prevent stale bot from closing the issue.
Try setting ENABLE_PROXY_FIX = True in your superset_config.py, find more context here https://github.com/apache/incubator-superset/pull/1150
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.
Following lines in nginx config solved this issue for us:
map $http_upgrade $connection_upgrade {
default "upgrade";
"" "";
}
server {
server_name superset.example.org
listen 443 ssl;
location / {
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
...
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
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 :)