-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Long callback function executed without being triggered #1985
Comments
I'm posting this here since it provides more information about why it might be happening: |
+1 |
Hi - we are tidying up stale issues and PRs in Plotly's public repositories so that we can focus on things that are most important to our community. If this issue is still a concern, please add a comment letting us know what recent version of our software you've checked it with so that I can reopen it and add it to our backlog. (Please note that we will give priority to reports that include a short reproducible example.) If you'd like to submit a PR, we'd be happy to prioritize a review, and if it's a request for tech support, please post in our community forum. Thank you - @gvwilson |
Describe your context
Please provide us your environment, so we can easily reproduce the issue.
Describe the bug
I have a rather complex app where the layout content is generated by a callback (single page app). For one specific layout content, I need a long callback because one callback function takes some time to execute. The problem is that, somehow, right after the layout is generated, the long callback is triggered automatically (even when using prevent_initial_call). No problem if I use a standard callback, though.
Please find below a sample script to reproduce this issue based on the long callback example in the documentation. I also defined a
validation_layout
as recommended by the documentation.Execute the app, click on "Generate layout", wait a few seconds,
"paragraph_id"
children will automatically change to "Clicked None times".Expected behavior
The long callback not to be triggered after the new layout is generated. For the example above, the
children
property of the component"paragraph_id"
to be updated only when the button is clicked.The text was updated successfully, but these errors were encountered: