promptgraph-mcp 2.9.19 → 2.9.20
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/indexer.js +1 -1
- package/package.json +1 -1
package/indexer.js
CHANGED
|
@@ -197,7 +197,7 @@ export async function indexAll({ fast = false } = {}) {
|
|
|
197
197
|
if (count % 200 === 0) {
|
|
198
198
|
const eta = processedCount > 0 && processedStart
|
|
199
199
|
? Math.round((total - count) * (Date.now() - processedStart) / processedCount / 1000)
|
|
200
|
-
:
|
|
200
|
+
: Math.round((total - count) * (Date.now() - start) / count / 1000);
|
|
201
201
|
progress(count, total, { skipped, eta, errors });
|
|
202
202
|
}
|
|
203
203
|
continue;
|