Skip to content

Commit

Permalink
fix: respect schema definitions for starting position timestamp param…
Browse files Browse the repository at this point in the history
…eter
  • Loading branch information
overbit committed Nov 2, 2022
1 parent 76dbad8 commit fe3b9e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugins/aws/package/compile/events/kafka.js
Expand Up @@ -254,7 +254,7 @@ class AwsCompileKafkaEvents {
};
}

if (startingPositionTimestamp) {
if (startingPositionTimestamp !== undefined) {
kafkaResource.Properties.StartingPositionTimestamp = startingPositionTimestamp;
}

Expand Down

0 comments on commit fe3b9e6

Please sign in to comment.