@xdarkicex/openclaw-memory-libravdb 1.4.57 → 1.4.58

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/index.js CHANGED
@@ -39559,6 +39559,10 @@ var SidecarSupervisor = class {
39559
39559
  this.retries += 1;
39560
39560
  this.reconnectScheduled = true;
39561
39561
  this.runtime.scheduleRestart(backoffMs, () => {
39562
+ if (this.shuttingDown) {
39563
+ this.reconnectScheduled = false;
39564
+ return;
39565
+ }
39562
39566
  void this.start().catch((error) => {
39563
39567
  this.reconnectScheduled = false;
39564
39568
  const message = error instanceof Error ? error.message : String(error);
package/dist/sidecar.js CHANGED
@@ -285,6 +285,10 @@ class SidecarSupervisor {
285
285
  this.retries += 1;
286
286
  this.reconnectScheduled = true;
287
287
  this.runtime.scheduleRestart(backoffMs, () => {
288
+ if (this.shuttingDown) {
289
+ this.reconnectScheduled = false;
290
+ return;
291
+ }
288
292
  void this.start().catch((error) => {
289
293
  this.reconnectScheduled = false;
290
294
  const message = error instanceof Error ? error.message : String(error);
@@ -2,7 +2,7 @@
2
2
  "id": "libravdb-memory",
3
3
  "name": "LibraVDB Memory",
4
4
  "description": "Persistent vector memory with three-tier hybrid scoring",
5
- "version": "1.4.57",
5
+ "version": "1.4.58",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.4.57",
3
+ "version": "1.4.58",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",