Skip to content

Commit

Permalink
Var should be const
Browse files Browse the repository at this point in the history
  • Loading branch information
abarciauskas-bgse committed Mar 8, 2018
1 parent adf4b4b commit 05c31a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/lambdas/db-indexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function indexRecord(esClient, record) {
return Promise.resolve();
}

let stack = process.env.stackName;
const stack = process.env.stackName;

//determine whether the record should be indexed
const acceptedTables = ['Collection', 'Provider', 'Rule'];
Expand Down

0 comments on commit 05c31a6

Please sign in to comment.