From 53c2c98c920a96d80a4770072e12adb185b23b65 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 27 Jun 2026 01:03:36 -0700 Subject: [PATCH] Contextualize worker result processing failure. --- src/lib/vault/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/vault/index.ts b/src/lib/vault/index.ts index 736add6..e6190de 100644 --- a/src/lib/vault/index.ts +++ b/src/lib/vault/index.ts @@ -120,7 +120,7 @@ export class Vault { } const task = this.#tasks.get(id) if (task == null) { - throw new Error('Vault worker returned results without an associated job.') + throw new Error(`Vault worker returned results without an associated job for ID ${id}`) } const { resolve, reject } = task if (error != null) { -- 2.52.0