Skip to content

Commit 3dc6eea

Browse files
committed
Version 2.5.3
1 parent e06f8db commit 3dc6eea

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

common.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ exports.retryableUpdate = function(dynamoDB, updateRequest, callback) {
196196
}
197197
}
198198
});
199-
}, function(err) {
200-
callback(err);
199+
}, function(err, data) {
200+
callback(err, data);
201201
});
202202
};
203203

1.07 MB
Binary file not shown.

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ exports.handler = function(event, context) {
536536
}
537537
};
538538

539-
common.retryableUpate(dynamoDB, item, function(err, data) {
539+
common.retryableUpdate(dynamoDB, item, function(err, data) {
540540
if (err) {
541541
console.log(err);
542542
} else {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "aws-lambda-redshift-loader",
33
"description": "An Amazon Redshift Database Loader written for AWS Lambda",
4-
"version": "2.5.1",
4+
"version": "2.5.3",
55
"homepage": "http://github.com/awslabs/aws-lambda-redshift-loader",
66
"bugs": {
77
"url": "http://github.com/awslabs/aws-lambda-redshift-loader/issues",

0 commit comments

Comments
 (0)