Skip to content

Commit

Permalink
fix for default table name, fixes 13
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Carson committed Aug 11, 2013
1 parent b78cf01 commit b81d836
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 1,8 @@
1.0.4 / 2013-07-27
==================

* Fix for default table name (https://github.com/ca98am79/connect-dynamodb/issues/13)

1.0.3 / 2013-08-10
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/connect-dynamodb.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 66,7 @@ module.exports = function(connect){
}, function (error, info) {
if (error) {
this.client.createTable({
TableName: options.table,
TableName: this.table,
AttributeDefinitions: [
{ AttributeName: 'id', AttributeType: 'S' }
],
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": "connect-dynamodb",
"description": "DynamoDB session store for Connect",
"version": "1.0.3",
"version": "1.0.4",
"author": "Mike Carson <[email protected]> (http://ca98am79.com)",
"main": "./index.js",
"dependencies": {
Expand Down

0 comments on commit b81d836

Please sign in to comment.