We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c15d8e commit eb3059cCopy full SHA for eb3059c
libs/langgraph/src/pregel/loop.ts
@@ -843,8 +843,8 @@ export class PregelLoop {
843
// or a nested graph with error or interrupt
844
error !== undefined ||
845
// or a nested graph with checkpointer: true
846
- this.checkpointNamespace.every(
847
- (part) => !part.includes(CHECKPOINT_NAMESPACE_END)
+ this.checkpointNamespace.some((part) =>
+ part.includes(CHECKPOINT_NAMESPACE_END)
848
))
849
) {
850
this._putCheckpoint(this.checkpointMetadata);
0 commit comments