Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: tabVersion <[email protected]>
  • Loading branch information
tabVersion committed Aug 14, 2024
1 parent cad31da commit 968605e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/connector/src/source/kinesis/source/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ impl SplitReader for KinesisSplitReader {
if !matches!(start_position, KinesisOffset::Timestamp(_))
&& properties.timestamp_offset.is_some()
{
bail!("scan.startup.mode needs to be set to 'timestamp' if you want to start with a specific timestamp");
// cannot bail! here because all new split readers will fail to start if user set 'scan.startup.mode' to 'timestamp'
tracing::warn!("scan.startup.mode needs to be set to 'timestamp' if you want to start with a specific timestamp, starting shard {} from the beginning",
split.id()
);
}

let stream_name = properties.common.stream_name.clone();
Expand Down

0 comments on commit 968605e

Please sign in to comment.