fix(memory): keep embedding timeout watchdog active

This commit is contained in:
Peter Steinberger
2026-06-01 12:27:50 +01:00
parent 5d902b0f20
commit 591f310869

View File

@@ -143,7 +143,6 @@ export async function runEmbeddingOperationWithTimeout<T>(params: {
reject(error);
controller.abort(error);
}, timeoutMs);
timer.unref?.();
});
try {
const operation = params.run(controller.signal);