Skip to content

Commit

Permalink
#54: Refactored expansion scoring to not use recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
darnjo committed Oct 23, 2023
1 parent 8f2b978 commit 6bab5f2
Show file tree
Hide file tree
Showing 3 changed files with 188 additions and 184 deletions.
1 change: 0 additions & 1 deletion lib/replication/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,6 @@ const replicate = async ({
// mutated on each call
const STATE_VARIABLES = {
resourceAvailabilityMap: {},
expansionAvailabilityMap: {},
// used to detect whether we've pulled the same record using different strategies
recordHashCountMap: {},
responses: []
Expand Down
8 changes: 4 additions & 4 deletions lib/replication/services/auth/oauth2.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'use strict';

const init = ({bearerToken, clientCredentials = {}}) => {
// const init = ({ bearerToken, clientCredentials = {} }) => {

};
// };


module.exports = {
init
};
//init
};
Loading

0 comments on commit 6bab5f2

Please sign in to comment.