Updated supplementing mechanism.

This commit is contained in:
Patrick Fic
2023-03-20 14:56:02 -07:00
parent b82c04a16a
commit c3749f62fe
2 changed files with 16 additions and 16 deletions

View File

@@ -50,7 +50,6 @@ export const GetSupplementDelta = async (client, jobId, newLines) => {
.reduce((acc, value, idx) => {
return acc + generateRemoveQuery(value, idx);
}, "");
console.log(insertQueries, updateQueries, removeQueries);
if ((insertQueries + updateQueries + removeQueries).trim() === "") {
return new Promise((resolve, reject) => {