mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Bug fixed: we should never be calling meteorDebugFuture.wait() in production, so we now use process.env.METEOR_INSPECT_BRK in developement to enable the waiting. Lesson learned: if you call Fiber.yield() in the only running Fiber without any other events scheduled on the event loop, the program will immediately exit with code 0, as it should. Closes #8817.