@camstack/server 1.2.26 → 1.2.28
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.
|
@@ -341,6 +341,12 @@ class MoleculerService {
|
|
|
341
341
|
return false;
|
|
342
342
|
return cap_router_runtime_js_1.COLLECTION_ARRAY_METHODS.get(capName)?.includes(method) === true;
|
|
343
343
|
},
|
|
344
|
+
// Bound every UDS cap call by the cap's own declared timeout, falling
|
|
345
|
+
// back to the channel default. Same resolver the REMOTE plane uses
|
|
346
|
+
// below, so a method that survives 16 minutes across nodes survives it
|
|
347
|
+
// across a socket too — and one that hangs is cut off on both.
|
|
348
|
+
capTimeoutMs: (capName, method) => this.capabilityService.getRegistry()?.getDefinition(capName)?.methods?.[method]
|
|
349
|
+
?.timeoutMs,
|
|
344
350
|
logger: {
|
|
345
351
|
info: (msg, meta) => logger.info(msg, meta !== null && meta !== undefined
|
|
346
352
|
? { meta: meta }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camstack/server",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.28",
|
|
4
4
|
"private": false,
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
"@camstack/addon-auth": "1.2.6",
|
|
39
39
|
"@camstack/addon-decoder-nodeav": "1.2.6",
|
|
40
40
|
"@camstack/addon-notifiers": "1.2.8",
|
|
41
|
-
"@camstack/addon-pipeline": "1.2.
|
|
42
|
-
"@camstack/addon-pipeline-orchestrator": "1.2.
|
|
43
|
-
"@camstack/addon-post-analysis": "1.2.
|
|
41
|
+
"@camstack/addon-pipeline": "1.2.29",
|
|
42
|
+
"@camstack/addon-pipeline-orchestrator": "1.2.12",
|
|
43
|
+
"@camstack/addon-post-analysis": "1.2.19",
|
|
44
44
|
"@camstack/sdk": "1.2.6",
|
|
45
45
|
"@camstack/shm-ring": "1.1.6",
|
|
46
|
-
"@camstack/system": "1.2.
|
|
46
|
+
"@camstack/system": "1.2.25",
|
|
47
47
|
"@camstack/types": "1.2.17",
|
|
48
48
|
"@camstack/ui-library": "1.2.13",
|
|
49
49
|
"@fastify/compress": "^9.0.0",
|