Skip to content

Commit

Permalink
#89: Update termination outcome
Browse files Browse the repository at this point in the history
  • Loading branch information
darnjo committed Apr 6, 2024
1 parent 20633d7 commit 8766223
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/certification/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ const runDDTests = async ({
try {
pathToMetadataReportJson = await processDataDictionaryMetadataFiles(RECIPIENT_PATH);
} catch (err) {
handleError(err, { terminate: false });
handleError(err);
}

if (runAllTests) {
Expand Down
1 change: 1 addition & 0 deletions lib/replication/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ const replicate = async ({
: JSON.parse(await readFile(pathToMetadataReportJson, { encoding: 'utf8' }));

// this needs to be done only once, and only if we're using schema validation
// TODO: consider passing in when needed instead
let generatedSchema;

let schemaValidationResults = {};
Expand Down
2 changes: 1 addition & 1 deletion lib/replication/replication-iterator.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ async function* replicationIterator({

try {
//request records
console.log(`\nFetching records from '${requestUri}'...`);
console.log(`\nFetching records from: ${requestUri}`);

const startTimeMs = new Date();
const response = await fetch(requestUri, { headers });
Expand Down

0 comments on commit 8766223

Please sign in to comment.