From de0212fed7e24af3c108d64eacef8b8d246e62b1 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Fri, 17 Apr 2026 02:01:26 +0200 Subject: [PATCH] chore: drop Rust-crate-specific name from worker comment (cspell) --- worker/src/start.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/src/start.ts b/worker/src/start.ts index 799211b9e9..1620f5415f 100644 --- a/worker/src/start.ts +++ b/worker/src/start.ts @@ -509,7 +509,7 @@ function writeCafsFiles (message: WriteCafsFilesMessage): { status: string, file // measured slower than letting Node handle HTTP and gunzip and only // handing the uncompressed payload to Rust for parse + write — Node's // event loop overlaps socket reads with gunzip concurrently, which the -// sync `ureq` path can't match. +// sync HTTP client in the Rust crate can't match. let nativeWriteFiles: ((storeDir: string, payload: Buffer) => number) | undefined if (!process.env.PNPM_CAFS_WRITER_DISABLE_NATIVE) { try {