spencermountain / dumpster-dive

roll a wikipedia dump into mongo
Other
240 stars 46 forks source link

await on done function for promise resolution #76

Closed itaiperi closed 5 years ago

itaiperi commented 5 years ago

Previously, done function at https://github.com/spencermountain/dumpster-dive/blob/f9b8c433ac645f5afb2becd6bb1f1244c6a50d01/src/index.js#L44 wasn't awaited on, and so async functions that took more than 1 second would get killed because of the process.exit() in the finish function.

spencermountain commented 5 years ago

ah! good find!