sr-npm 1.7.1321 → 1.7.1322
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/data.js +2 -1
- package/package.json +1 -1
package/backend/data.js
CHANGED
|
@@ -419,8 +419,9 @@ async function syncJobsFast() {
|
|
|
419
419
|
console.log("retrieved jobs data from SR API successfully");
|
|
420
420
|
|
|
421
421
|
console.log("retrieving jobs descriptions and location apply url from SR API");
|
|
422
|
-
const status=await retrieveJobsDescriptionsAndLocationApplyUrlReferences(jobsData);
|
|
423
422
|
|
|
423
|
+
const status=await retrieveJobsDescriptionsAndLocationApplyUrlReferences(jobsData);
|
|
424
|
+
throw new Error("test");
|
|
424
425
|
console.log("status inside syncJobsFast: ",status);
|
|
425
426
|
if(status.success){
|
|
426
427
|
await wixData.truncate(COLLECTIONS.JOBS)
|