Skip to content

Commit

Permalink
Version 2.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
IanMeyers committed Oct 12, 2017
1 parent e06f8db commit 3dc6eea
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions common.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ exports.retryableUpdate = function(dynamoDB, updateRequest, callback) {
}
}
});
}, function(err) {
callback(err);
}, function(err, data) {
callback(err, data);
});
};

Expand Down
Binary file added dist/AWSLambdaRedshiftLoader-2.5.3.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ exports.handler = function(event, context) {
}
};

common.retryableUpate(dynamoDB, item, function(err, data) {
common.retryableUpdate(dynamoDB, item, function(err, data) {
if (err) {
console.log(err);
} else {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aws-lambda-redshift-loader",
"description": "An Amazon Redshift Database Loader written for AWS Lambda",
"version": "2.5.1",
"version": "2.5.3",
"homepage": "http://github.com/awslabs/aws-lambda-redshift-loader",
"bugs": {
"url": "http://github.com/awslabs/aws-lambda-redshift-loader/issues",
Expand Down

0 comments on commit 3dc6eea

Please sign in to comment.