@deinossrl/dgp-agent 1.5.21 → 1.5.22
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/CHANGELOG.md +5 -0
- package/index.mjs +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/index.mjs
CHANGED
|
@@ -2382,7 +2382,9 @@ async function executePgRestore(command) {
|
|
|
2382
2382
|
const now = Date.now();
|
|
2383
2383
|
|
|
2384
2384
|
// LOGICA: Filtrar, calcular y MOSTRAR PROGRESO (Consola y Web)
|
|
2385
|
-
|
|
2385
|
+
// "from TOC entry" es clave para objetos metadata
|
|
2386
|
+
// "dropping" es para actividad de limpieza (si --clean)
|
|
2387
|
+
if (trimmed.includes('processing') || trimmed.includes('creating') || trimmed.includes('restoring') || trimmed.includes('creando') || trimmed.includes('procesando') || trimmed.includes('from TOC entry') || trimmed.includes('dropping')) {
|
|
2386
2388
|
processedObjects++;
|
|
2387
2389
|
|
|
2388
2390
|
// Si es un item procesado, mostrar progreso en consola
|