Skip to content

Commit ad1242b

Browse files
committed
Actually set error
1 parent 178ff6d commit ad1242b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

crates/core/src/sync/streaming_sync.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,9 @@ impl StreamingSyncIteration {
462462
()
463463
}
464464
}
465-
Err(e) if e.can_retry() => {}
465+
Err(e) if e.can_retry() => {
466+
event.recoverable_error = Some(e);
467+
}
466468
Err(e) => return Err(e),
467469
};
468470

0 commit comments

Comments
 (0)