From a913a5e58cf02e1b90dcfcd67001a0d5b814842e Mon Sep 17 00:00:00 2001 From: Dan Sutton Date: Fri, 21 Aug 2026 14:34:04 +0100 Subject: [PATCH] refactor(run-engine): cite the batchId log sites by symbol, not line number The RunBlockEdge comment pointed at stale waitpointSystem.ts line numbers that no longer match the file after this branch shrank it. Name the continueRunIfUnblocked method instead so the citation can't drift again. --- .../run-engine/src/engine/waitpointCoordinator/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal-packages/run-engine/src/engine/waitpointCoordinator/types.ts b/internal-packages/run-engine/src/engine/waitpointCoordinator/types.ts index 9b89a065c..bc2f02e26 100644 --- a/internal-packages/run-engine/src/engine/waitpointCoordinator/types.ts +++ b/internal-packages/run-engine/src/engine/waitpointCoordinator/types.ts @@ -45,8 +45,8 @@ export type ClearRunBlockStateParams = { /** * One block edge, with the fields the unblock decision reads. * - * `batchId` is read by no logic. It rides inside two `logger.debug` payloads - * (`waitpointSystem.ts:702-705` and `:936-939`), so removing it changes log output. + * `batchId` is read by no logic. It rides inside the two `logger.debug` payloads in + * `continueRunIfUnblocked`, so removing it changes log output. */ export type RunBlockEdge = { id: string;