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
fix: URI handling race condition when creating polling jobs
- when opening a URI, multiple polling jobs could be triggered on different
Coder deployments if Toolbox starts from scratch. This happens because Toolbox
takes longer to complete its initial plugin initialization, while the URI
handling logic runs faster and doesn't wait properly for the plugin to be ready,
leading to an early polling job. Meanwhile, once Toolbox finishes its initialization,
it also triggers another polling job.
- this patch properly waits for the plugin initialization and properly cancel the initial
polling job, which is then replaced by the URI handling polling job.
0 commit comments