From e056cdc2a923d52795399aac1f996265d1b912cc Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 14 May 2025 18:03:31 -0400 Subject: [PATCH] doc/rl-next: Add eval-cache-errors --- doc/manual/rl-next/eval-cache-errors.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 doc/manual/rl-next/eval-cache-errors.md diff --git a/doc/manual/rl-next/eval-cache-errors.md b/doc/manual/rl-next/eval-cache-errors.md new file mode 100644 index 000000000..8e20512d2 --- /dev/null +++ b/doc/manual/rl-next/eval-cache-errors.md @@ -0,0 +1,9 @@ +--- +synopsis: "Consistently preserve error messages from cached evaluation" +issues: [12762] +prs: [12809] +--- + +In one code path, we are not returning the errors cached from prior evaluation, but instead throwing generic errors stemming from the lack of value (due to the error). +These generic error messages were far less informative. +Now we consistently return the original error message.