Skip to content

Commit 6add0bc

Browse files
committed
fix: use public method instead of private operationDataMap property
- Replace storage.operationDataMap with storage.getAllOperationData() - Fixes TypeScript compilation error about accessing private property
1 parent e4cfd60 commit 6add0bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/aws-durable-execution-sdk-js-testing/src/checkpoint-server/handlers/checkpoint-handlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export function processCheckpointDurableExecution(
105105
createCheckpointToken(input.CheckpointToken),
106106
);
107107

108-
validateCheckpointUpdates(updates, storage.operationDataMap);
108+
validateCheckpointUpdates(updates, storage.getAllOperationData());
109109

110110
storage.registerUpdates(updates);
111111

0 commit comments

Comments
 (0)