File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ Pending
20
20
* Deprecated the ``OBSERVE_REQUEST_CALLBACK `` setting and added check
21
21
``debug_toolbar.W008 `` to warn when it is present in
22
22
``DEBUG_TOOLBAR_SETTINGS ``.
23
+ * Add a note on the profiling panel about using Python 3.12 and later
24
+ about needing ``--nothreading ``
23
25
24
26
4.3.0 (2024-02-01)
25
27
------------------
Original file line number Diff line number Diff line change @@ -123,6 +123,10 @@ Profiling information for the processing of the request.
123
123
This panel is included but inactive by default. You can activate it by default
124
124
with the ``DISABLE_PANELS `` configuration option.
125
125
126
+ For version of Python 3.12 and later you need to use
127
+ ``python -m manage runserver --nothreading ``
128
+ Concurrent requests don't work with the profiling panel.
129
+
126
130
The panel will include all function calls made by your project if you're using
127
131
the setting ``settings.BASE_DIR `` to point to your project's root directory.
128
132
If a function is in a file within that directory and does not include
Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ mousedown
36
36
mouseup
37
37
multi
38
38
neo
39
+ nothreading
39
40
paddings
40
41
pre
41
42
profiler
@@ -47,6 +48,7 @@ pyupgrade
47
48
querysets
48
49
refactoring
49
50
resizing
51
+ runserver
50
52
spellchecking
51
53
spooler
52
54
stacktrace
You can’t perform that action at this time.
0 commit comments