You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The crash in question is a circular-JSON error for JSON.stringify. Drilling down into the JSON in question, it absolutely is circular. Besides fixing this particular data that is being input, we should not use JSON.stringify on anything we aren't 100% sure of the shape of, since this error is relatively easy to create.
Superset version
Master
Expected results
Display Time Series
Actual results
Crash
Steps to reproduce
Deploy with Sample data.
Create new chart (suggested: use Birth Names)
For the time-series column options, choose "Spark Line"
Run query. (Click button in top left)
Crash.
Stacktrace
Uncaught TypeError: Converting circular structure to JSON
at JSON.stringify (<anonymous>)
at getExploreLongUrl (exploreUtils.js?2c11:74)
at ProxyComponent.addHistory (ExploreViewContainer.jsx?2c1c:237)
at ProxyComponent.addHistory (react-hot-loader.development.js?c2cb:693)
at ProxyComponent.onQuery (ExploreViewContainer.jsx?2c1c:162)
at ProxyComponent.onQuery (react-hot-loader.development.js?c2cb:693)
at HTMLUnknownElement.callCallback (react-dom.development.js?61bb:149)
at Object.invokeGuardedCallbackDev (react-dom.development.js?61bb:199)
at invokeGuardedCallback (react-dom.development.js?61bb:256)
at invokeGuardedCallbackAndCatchFirstError (react-dom.development.js?61bb:270)
Upon digging in / debugging, the formData element being parsed at that line is absolutely a circular JSON argument.
The text was updated successfully, but these errors were encountered:
Make sure these boxes are checked before submitting your issue - thank you!
Using the latest Master and the provided sample data, I was getting a repeated crash at https://github.com/apache/incubator-superset/blob/master/superset/assets/src/explore/exploreUtils.js#L74
when creating a Time-series table immediately upon clicking "run query".
The crash in question is a circular-JSON error for
JSON.stringify
. Drilling down into the JSON in question, it absolutely is circular. Besides fixing this particular data that is being input, we should not useJSON.stringify
on anything we aren't 100% sure of the shape of, since this error is relatively easy to create.Superset version
Master
Expected results
Display Time Series
Actual results
Crash
Steps to reproduce
Stacktrace
Upon digging in / debugging, the
formData
element being parsed at that line is absolutely a circular JSON argument.The text was updated successfully, but these errors were encountered: