Skip to content

Commit e7b2088

Browse files
committed
Add note to dynamic callback test and changelog entry.
1 parent 9a12d1b commit e7b2088

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1515
## Added
1616

1717
- [#2649](https://github.com/plotly/dash/pull/2649) Add `_allow_dynamic_callbacks`, register new callbacks inside other callbacks.
18+
**WARNING: dynamic callback creation can be dangerous, use at you own risk. It is not intended for use in a production app, multi-user or multiprocess use as it only works for a single user.**
1819

1920
## [2.13.0] 2023-08-28
2021
## Changed

tests/integration/callbacks/test_dynamic_callback.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from dash import html, Dash, Input, Output
22

33

4+
# WARNING: dynamic callback creation can be dangerous, use at you own risk.
5+
# It is not intended for use in a production app, multi-user
6+
# or multiprocess use as it only works for a single user.
47
def test_dync001_dynamic_callback(dash_duo):
58
app = Dash()
69

0 commit comments

Comments
 (0)