@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 +4 -0
- package/dist/sidecar.js +4 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
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);
|
package/openclaw.plugin.json
CHANGED