Skip to content

Commit

Permalink
Rename legacy AWS SDK interface
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanblock committed Oct 13, 2023
1 parent 48db6a2 commit 59dbfd9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tables/factory.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let { getAwsClient, getPorts, useAWS } = require('../lib')
let getAwsSdkClient = require('./dynamo')
let getAwsSdkClient = require('./legacy')
let enumerable = false
let paginate = true

Expand Down
2 changes: 1 addition & 1 deletion src/tables/dynamo.js → src/tables/legacy.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let client = {}
/**
* Instantiates legacy AWS SDK DynamoDB service interfaces
*/
module.exports = function getDynamo ({ port, region }) {
module.exports = function getLegacyDynamoClients ({ port, region }) {

if (client.db && client.doc) return client

Expand Down

0 comments on commit 59dbfd9

Please sign in to comment.