Skip to content

Commit cbfbca8

Browse files
committed
Remove erroneous comment.
1 parent 55ce844 commit cbfbca8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/from/dynamodb.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,6 @@ export const toDynamodbRecords = (events, { removeUndefinedValues = true } = {})
194194
eventSource: 'aws:dynamodb',
195195
awsRegion: e.newImage?.awsregion || process.env.AWS_REGION || /* istanbul ignore next */ 'us-west-2',
196196
dynamodb: {
197-
// TODO - Fix this in next major version bump. ApproximateCreationDateTime is meant to be in seconds, not millis.
198-
// Didn't want to fix until a major version bump to avoid compatibility issues for consumers
199-
// upgrading the lib. This should be e.timestamp / 1000
200197
ApproximateCreationDateTime: e.timestamp,
201198
Keys: e.keys ? marshall(e.keys, { removeUndefinedValues }) : /* istanbul ignore next */ undefined,
202199
NewImage: e.newImage ? marshall(e.newImage, { removeUndefinedValues }) : undefined,

0 commit comments

Comments
 (0)