You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm trying to "merge" multiple tar archives to one big archive using the tar-stream library and return the merged archive using fastify. My problem is, while merging the archives I'm getting the following error:
node:events:498
throw er; // Unhandled 'error' event
^
Error: tar entry destroyed
at Sink._getError (C:\app\node_modules\tar-stream\pack.js:111:36)
at Sink._destroy (C:\app\node_modules\tar-stream\pack.js:121:53)
at WritableState.updateNonPrimary (C:\app\node_modules\streamx\index.js:208:16)
at WritableState.update (C:\app\node_modules\streamx\index.js:190:72)
at WritableState.updateWriteNT (C:\app\node_modules\streamx\index.js:550:10)
at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
Emitted 'error' event on Extract instance at:
at emitErrorNT (node:internal/streams/destroy:170:8)
at errorOrDestroy (node:internal/streams/destroy:239:7)
at Extract.onerror (node:internal/streams/readable:1024:9)
at Extract.emit (node:events:520:28)
at WritableState.afterDestroy (C:\app\node_modules\streamx\index.js:500:19)
at Extract._destroy (C:\app\node_modules\tar-stream\extract.js:301:5)
at WritableState.updateNonPrimary (C:\app\node_modules\streamx\index.js:208:16)
[... lines matching original stack trace ...]
at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
I was already checking out #24 because it's very similar, but unfortunately I wasn't able to find a solution for my problem... Any ideas how I can solve the issue?
The text was updated successfully, but these errors were encountered:
Hi, I'm trying to "merge" multiple tar archives to one big archive using the tar-stream library and return the merged archive using fastify. My problem is, while merging the archives I'm getting the following error:
My source is the following:
I was already checking out #24 because it's very similar, but unfortunately I wasn't able to find a solution for my problem... Any ideas how I can solve the issue?
The text was updated successfully, but these errors were encountered: