We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e4487 commit 9d1e417Copy full SHA for 9d1e417
dash/dash.py
@@ -547,6 +547,13 @@ def __init__( # pylint: disable=too-many-statements
547
548
self._assets_files = []
549
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
557
self._background_manager = background_callback_manager or long_callback_manager
558
559
self.logger = logging.getLogger(__name__)
0 commit comments