@runtimescope/collector 0.10.4 → 0.10.6
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.
|
@@ -1865,10 +1865,12 @@ var CollectorServer = class {
|
|
|
1865
1865
|
const maxRetries = options.maxRetries ?? 5;
|
|
1866
1866
|
const retryDelayMs = options.retryDelayMs ?? 1e3;
|
|
1867
1867
|
const tls = options.tls ?? this.tlsConfig;
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1868
|
+
if (!options.skipRecovery) {
|
|
1869
|
+
try {
|
|
1870
|
+
this.runStartupRecovery();
|
|
1871
|
+
} catch (err) {
|
|
1872
|
+
console.error("[RuntimeScope] Startup recovery failed (non-fatal):", err.message);
|
|
1873
|
+
}
|
|
1872
1874
|
}
|
|
1873
1875
|
this.ready = true;
|
|
1874
1876
|
return this.tryStart(port, host, maxRetries, retryDelayMs, tls);
|
|
@@ -7408,4 +7410,4 @@ export {
|
|
|
7408
7410
|
parseSessionJsonl,
|
|
7409
7411
|
ProjectDiscovery
|
|
7410
7412
|
};
|
|
7411
|
-
//# sourceMappingURL=chunk-
|
|
7413
|
+
//# sourceMappingURL=chunk-ODBRN4NR.js.map
|