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
It seems like Deno's polyfill for Node's crypto.Hash considers .end() as a finalization of the object, and so a following call to .digest('hex') fails with ERR_CRYPTO_HASH_FINALIZED.
This happens in src/utils/deploy/hasher-segments.ts function hashFile():
pipeline() indirectly ends the hasher write stream after consuming the read stream. So the following call to hasher.digest('hex') results in an exception.
A solution that worked for me is providing { end: false } as a second parameter to pipeline(). (I also verified that this does not break running the command from node.js.)
An alternative would be to use hasher.read().toString('hex') instead of hasher.digest('hex'), which only reads the hash result (assuming that .end() was called previously) instead of trying to finalize the hash object. However, I find this approach a bit too implicit/indirect.
Steps to reproduce
Given a project that has already been configured for deployment:
deno run -A npm:netlify-cli deploy
The output was:
[...etc...]
❯ Context
✔ Finished uploading blobs to deploy store
✔ No cached functions were found
⠦ Hashing files... › Warning:
{
"code": "ERR_CRYPTO_HASH_FINALIZED",
"name": "Error"
}
› Error: Digest already called
Describe the bug
It seems like Deno's polyfill for Node's crypto.Hash considers
.end()
as a finalization of the object, and so a following call to.digest('hex')
fails withERR_CRYPTO_HASH_FINALIZED
.This happens in
src/utils/deploy/hasher-segments.ts
functionhashFile()
:pipeline()
indirectly ends thehasher
write stream after consuming the read stream. So the following call tohasher.digest('hex')
results in an exception.A solution that worked for me is providing
{ end: false }
as a second parameter topipeline()
. (I also verified that this does not break running the command from node.js.)See: Garciat/netlify-cli@main...garciat/fix-deno-digest-already-called
An alternative would be to use
hasher.read().toString('hex')
instead ofhasher.digest('hex')
, which only reads the hash result (assuming that.end()
was called previously) instead of trying to finalize the hash object. However, I find this approach a bit too implicit/indirect.Steps to reproduce
Given a project that has already been configured for deployment:
The output was:
Configuration
No response
Environment
The text was updated successfully, but these errors were encountered: