@platformatic/control 3.39.0 → 3.40.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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +4 -4
package/lib/index.js CHANGED
@@ -142,7 +142,7 @@ export class RuntimeApiClient {
142
142
 
143
143
  if (metadataRequest.status === 'rejected') {
144
144
  // If it is just a non running runtime, we can remove its tmp dir, otherwise we log the error
145
- if (metadataRequest.reason.code !== 'ECONNREFUSED') {
145
+ if (metadataRequest.reason.code !== 'ECONNREFUSED' && metadataRequest.reason.code !== 'ENOENT') {
146
146
  this.#logger?.warn(
147
147
  { error: ensureLoggableError(metadataRequest.reason) },
148
148
  `Failed to retrieve metadata for runtime with PID ${runtimePID}.`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platformatic/control",
3
- "version": "3.39.0",
3
+ "version": "3.40.0",
4
4
  "description": "Platformatic Control",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -23,8 +23,8 @@
23
23
  "split2": "^4.2.0",
24
24
  "tsd": "^0.33.0",
25
25
  "typescript": "^5.5.4",
26
- "@platformatic/runtime": "3.39.0",
27
- "@platformatic/service": "3.39.0"
26
+ "@platformatic/runtime": "3.40.0",
27
+ "@platformatic/service": "3.40.0"
28
28
  },
29
29
  "dependencies": {
30
30
  "@fastify/error": "^4.0.0",
@@ -34,7 +34,7 @@
34
34
  "table": "^6.8.1",
35
35
  "undici": "^7.0.0",
36
36
  "ws": "^8.16.0",
37
- "@platformatic/foundation": "3.39.0"
37
+ "@platformatic/foundation": "3.40.0"
38
38
  },
39
39
  "tsd": {
40
40
  "directory": "test/types"