Skip to content

Commit ae093af

Browse files
authored
Merge pull request #2426 from plotly/fix-2418
Set default interval to 1 second for app.long_callback
2 parents f99565f + 0ec86f1 commit ae093af

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

CHANGELOG.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1515
- [#2417](https://github.com/plotly/dash/pull/2417) Disable the pytest plugin if `dash[testing]` not installed, fix [#946](https://github.com/plotly/dash/issues/946).
1616
- [#2417](https://github.com/plotly/dash/pull/2417) Do not swallow the original error to get the webdriver, easier to know what is wrong after updating the browser but the driver.
1717
- [#2425](https://github.com/plotly/dash/pull/2425) Fix multiple log handler added unconditionally to the logger, resulting in duplicate log message.
18+
- [#2415](https://github.com/plotly/dash/pull/2415) Fix background callbacks progress not deleted after fetch.
19+
- [#2426](https://github.com/plotly/dash/pull/2426) Set default interval to 1 second for app.long_callback, restoring the behavior it had before v2.6.0 when we introduced `backround=True` callbacks.
1820

1921
## Changed
2022

2123
- [#2425](https://github.com/plotly/dash/pull/2425) Moved the logger namespace to `dash.dash`, as library logger it should be on that namespace instead of the user app.
2224

23-
## [UNRELEASED]
24-
25-
## Fixed
26-
27-
- [#2415](https://github.com/plotly/dash/pull/2415) Fix background callbacks progress not deleted after fetch.
28-
2925
## [2.8.1] - 2023-01-30
3026

3127
## Fixed

dash/dash.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def long_callback(
11621162
self,
11631163
*_args,
11641164
manager=None,
1165-
interval=None,
1165+
interval=1000,
11661166
running=None,
11671167
cancel=None,
11681168
progress=None,

0 commit comments

Comments
 (0)