You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently upgraded our dash code (from 2.5.1 to 2.8.0).
I noticed that our long callbacks using the original @app.long_callback decorator is polling our backend many times a second, instead of only once a second.
If I switch over to the new background=True, then the 1 second polling is restored.
I think this is a undesired client regression.
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
I recently upgraded our dash code (from 2.5.1 to 2.8.0).
I noticed that our long callbacks using the original
@app.long_callback
decorator is polling our backend many times a second, instead of only once a second.If I switch over to the new
background=True
, then the 1 second polling is restored.I think this is a undesired client regression.
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
pip list | grep dash
belowDescribe the bug
My frontend application is polling the backend excessively using
@app.long_callback
when theinterval
value is unset.Expected behavior
When a long callback is created using
@app.long_callback
, the default interval of 1 second should be used.The text was updated successfully, but these errors were encountered: