It's hard to say anything specific without a complete, minimal code example. But this points to your code accidentally re-using some objects across more than one session (reload). Are you creating some plot objects at module scope in some external modules that you are importing? That would probably cause this. You need to create completely new objects every time.
Bryan
···
On Nov 8, 2016, at 2:42 AM, Meir Tseitlin <[email protected]> wrote:
Hi,
I am running a dashboard containing multiple plots and additional widgets. The exception is always thrown when reloading the page (Chrome and Firefox), never on initial load.
The causing element is always different - sometimes "Line", sometimes "BasicTickFormatter", sometimes "MonthTicker", sometimes "Row"...
My dashboard is constructed with:
curdoc().add_periodic_callback(liveUpdate, 100)
curdoc().add_root(gridplot(...))I tried the following with no success:
• Running Bokeh with "bokeh serve ." or "bokeh serve --show main.py"
• Using "Figure" instead of "figure" (as one of the related posts suggested)
•
Any ideas?
Am I doing something wrong?Many thanks!
--
You received this message because you are subscribed to the Google Groups "Bokeh Discussion - Public" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/2de6f533-1add-4ef0-be60-7ebaad0063aa%40continuum.io\.
For more options, visit https://groups.google.com/a/continuum.io/d/optout\.