@cosmicdrift/kumiko-server-runtime 0.182.1 → 0.183.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-server-runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.183.0",
|
|
4
4
|
"description": "Production server-boot runtime for Kumiko apps: connections, schema-drift-gate, seeds, lifecycle, graceful shutdown. Symmetric to kumiko-dev-server's runDevApp, without dev/scaffold/codegen tooling.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"@cosmicdrift/kumiko-bundled-features": "0.
|
|
80
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
79
|
+
"@cosmicdrift/kumiko-bundled-features": "0.183.0",
|
|
80
|
+
"@cosmicdrift/kumiko-framework": "0.183.0",
|
|
81
81
|
"temporal-polyfill": "^0.3.2"
|
|
82
82
|
},
|
|
83
83
|
"publishConfig": {
|
|
@@ -149,6 +149,9 @@ async function workerLaneSchedulers(prefix: string): Promise<{ name?: string; ke
|
|
|
149
149
|
const queue = new Queue(`${prefix}-worker`, {
|
|
150
150
|
connection: { host: url.hostname, port: Number(url.port) },
|
|
151
151
|
});
|
|
152
|
+
// A post-close 'error' here is otherwise unhandled and bun:test
|
|
153
|
+
// attributes it to whichever test runs next (fw#1805).
|
|
154
|
+
queue.on("error", () => {});
|
|
152
155
|
// Read-only: do NOT obliterate — the running all-in-one worker consumes this
|
|
153
156
|
// same queue, and deleting its keys mid-flight aborts the worker's blocking
|
|
154
157
|
// Redis read with "Connection is closed". The unique prefix isolates the
|