erictgrubaugh
09/17/2020, 4:54 PMcatch
the error that happensJessicaL
09/17/2020, 5:00 PMerictgrubaugh
09/17/2020, 5:08 PMfor (...) {
try { ... }
catch (e) { ... }
}
and an error occurs in the try
, then the catch
will execute and the loop will continueerictgrubaugh
09/17/2020, 5:10 PMeach
callback:
mySearch.run().each(result => {
try { ... }
catch { ... }
return true;
});
scottvonduhn
09/17/2020, 5:11 PMJessicaL
09/17/2020, 5:22 PMstalbert
09/17/2020, 5:38 PMscottvonduhn
09/17/2020, 5:46 PMehcanadian
09/17/2020, 6:18 PMmap
from reduce
, which has (according to the docs) less of a chance of parallelism. I need to reach out to NS to see why it's happenning.stalbert
09/17/2020, 6:25 PMstalbert
09/17/2020, 6:26 PMehcanadian
09/17/2020, 6:28 PMreduce
is processed in parallelscottvonduhn
09/17/2020, 6:45 PMstalbert
09/17/2020, 8:29 PM