rusackas commented on issue #41268: URL: https://github.com/apache/superset/issues/41268#issuecomment-4771582564
Thanks for the detailed writeup @sagarfirefly! Good news first: that `LocalProxy is not mapped` line is a red herring. It's harmless log noise that shows up for basically any guest/embedded request - the guest user isn't a DB-mapped object, so the logging code can't attach it to the session and just warns about it. It's been around more or less forever and isn't what's breaking your table. More context (and a way to silence it) over in #26020. So the real question is the "View as table" itself. You're getting a 200 on `/api/v1/chart/data` with nothing in the console, which makes me suspect the response is coming back empty/trimmed, or the render is bailing quietly, rather than an outright failure. When you click "View as table," could you grab the actual request from the Network tab - is it `/chart/data` or a `/datasource/.../samples` call? - plus its status and response body? That'll tell us pretty quickly whether it's the guest token getting a permission/payload trim or a frontend rendering thing. Worth flagging there's an open thread on embedded guests + tables in #37061, though that one's about sorting specifically, so probably adjacent rather than the same bug. -- 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]
