Skip to content

Commit 7096bcb

Browse files
committed
Completely skip the updating the data
1 parent 2c4e3f4 commit 7096bcb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/read-models/shared-state/async-apply-external-event-sources.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ const pullNewEquipmentQuizResultsForSheet = async (
8686
)(data.right);
8787
logger.info('Google sheet data extracted, result:');
8888
logger.info(inspect(result));
89-
logger.info('Updating data with the extracted data');
90-
if (O.isSome(result)) {
91-
result.value.forEach(updateState);
92-
}
89+
logger.info('[SKIPPED] Updating data with the extracted data');
90+
// if (O.isSome(result)) {
91+
// result.value.forEach(updateState);
92+
// }
9393
logger.info('Finished processing sheet');
9494
}
9595
};

0 commit comments

Comments
 (0)