autokap 1.8.0 → 1.8.2
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/cli.js +6 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -417,6 +417,12 @@ program
|
|
|
417
417
|
headed: opts.headed,
|
|
418
418
|
allowUploadFailure: opts.allowUploadFailure,
|
|
419
419
|
regenerateTts: opts.regenerateTts,
|
|
420
|
+
// Each preset runs under its own ephemeral runId, which is NOT a
|
|
421
|
+
// capture_runs row in a cloud batch (the parent cloud run owns the row),
|
|
422
|
+
// so the per-preset error-log export would 404. Failure telemetry for
|
|
423
|
+
// cloud recaptures is persisted server-side from the `preset_end:failed`
|
|
424
|
+
// checkpoint instead — disable the doomed local export here.
|
|
425
|
+
exportDebugLogs: false,
|
|
420
426
|
onProgress: (event) => {
|
|
421
427
|
const checkpoint = cloudCaptureProgressCheckpoint(event);
|
|
422
428
|
if (!checkpoint)
|