-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Correct RENDER_PANELS functionality and when enabled disable HistoryPanel #1440
Correct RENDER_PANELS functionality and when enabled disable HistoryPanel #1440
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1440 +/- ##
==========================================
+ Coverage 86.51% 86.58% +0.07%
==========================================
Files 35 35
Lines 1861 1864 +3
Branches 262 262
==========================================
+ Hits 1610 1614 +4
+ Misses 180 178 -2
- Partials 71 72 +1
Continue to review full report at Codecov.
|
1b2b044
to
5bb7626
Compare
docs/changes.rst
Outdated
* ``HistoryPanel`` will be disabled when ``RENDER_PANELS`` is ``True`` | ||
or if it's not set, but the server is running with multiple processes. | ||
* Fixes ``RENDER_PANELS`` functionality so that when ``True`` panels are | ||
rendered during the request and not loaded asynchronously. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a hard time understanding the first bullet point. The second bullet point should probably use past tense too for consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, that's written poorly. I'll fix it.
…anel. The render panels setting used to control whether the toolbar would keep the contents of the panels in the background or render the toolbar on every page. The history panel relies on loading panels in the background. If panels should be rendered on the request, then the history panel is can't/shouldn't work.
5bb7626
to
765fbd1
Compare
Thanks! |
The render panels setting used to control whether the toolbar would keep
the contents of the panels in the background or render the toolbar on
every page. The history panel relies on loading panels in the background.
If panels should be rendered on the request, then the history panel is
can't/shouldn't work.
References #1413