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
After close() switched to awaiting the in-flight connect, the
fallbackKernelBackend field became write-only: assigned in the connect
IIFE and cleared in close(), but read nowhere. It also left a confusing
stale write — a close() racing an in-flight connect nulled the field
before the IIFE re-assigned it onto an already-closed backend.
Remove the field; the fallbackKernelBackendConnect promise (whose
resolved value is the backend) is the single source of truth.
Co-authored-by: Isaac <no-reply@databricks.com>
Signed-off-by: Rahul Singhal <rahul.singhal@databricks.com>
0 commit comments