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: scope teardown session-abort to the in-process transport only
The abort-before-teardown only exists to release the runtime's SQLite session.db
handle over the in-process (FFI) transport, where the runtime shares this
process. stdio/tcp runtimes run in a child process we kill on shutdown, which
already frees the handle, so don't abort there. Gate on
connectionConfig.kind === 'inprocess' and note it's temporary until the runtime
cleans up fully on shutdown.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
0 commit comments