Skip to content

Commit 05f9b60

Browse files
authored
fix(s3): fix matched event name in S3 change stream (#492)
1 parent 8ad5bdc commit 05f9b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ops/sources/amazon_s3.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ impl Executor {
256256
continue;
257257
}
258258
if record.event_name.starts_with("ObjectCreated:")
259-
|| record.event_name.starts_with("ObjectDeleted:")
259+
|| record.event_name.starts_with("ObjectRemoved:")
260260
{
261261
changes.push(SourceChange {
262262
key: KeyValue::Str(s3.object.key.into()),

0 commit comments

Comments
 (0)