@threadbase-sh/streamer 1.41.1 → 1.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +3094 -2316
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +432 -141
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +192 -6
- package/dist/index.d.ts +192 -6
- package/dist/index.js +426 -135
- package/dist/index.js.map +1 -1
- package/dist/runtime-migrations/002_add_managed_session_boot_token.sql +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
-- Which machine boot the pid in this row was recorded during.
|
|
2
|
+
--
|
|
3
|
+
-- managed_sessions.pid is only meaningful within one boot: pid assignment
|
|
4
|
+
-- restarts at boot, so a stored pid recorded under a previous boot no longer
|
|
5
|
+
-- identifies anything and probing it can hit an unrelated process that merely
|
|
6
|
+
-- inherited that number. When that process's argv happens to contain the
|
|
7
|
+
-- recorded cmdline token -- which for a FRESH Codex session is only the
|
|
8
|
+
-- project path -- the reconciler wrongly reports `detached` and claims a live
|
|
9
|
+
-- process that is not ours. A mismatch here skips the probe entirely.
|
|
10
|
+
ALTER TABLE managed_sessions ADD COLUMN boot_token TEXT;
|
package/package.json
CHANGED