Skip to content

Commit 9d1e417

Browse files
committed
Deprecate keyword
1 parent 90e4487 commit 9d1e417

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dash/dash.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,13 @@ def __init__( # pylint: disable=too-many-statements
547547

548548
self._assets_files = []
549549
self._long_callback_count = 0
550+
if long_callback_manager:
551+
warnings.warn(
552+
DeprecationWarning(
553+
"`long_callback_manager` is deprecated and will be remove in dash 3.0, "
554+
"use `background_callback_manager` instead."
555+
)
556+
)
550557
self._background_manager = background_callback_manager or long_callback_manager
551558

552559
self.logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)