@514labs/moose-lib 0.6.252-ci-3-g37e54b29 → 0.6.252-ci-5-g3da4ba34

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.
@@ -2491,19 +2491,7 @@ var WebApp = class {
2491
2491
  return app.callback();
2492
2492
  }
2493
2493
  if (typeof app.routing === "function") {
2494
- let isReady = false;
2495
- let readyPromise = null;
2496
- if (typeof app.ready === "function") {
2497
- readyPromise = app.ready().then(() => {
2498
- isReady = true;
2499
- });
2500
- } else {
2501
- isReady = true;
2502
- }
2503
- return async (req, res) => {
2504
- if (!isReady && readyPromise) {
2505
- await readyPromise;
2506
- }
2494
+ return (req, res) => {
2507
2495
  app.routing(req, res);
2508
2496
  };
2509
2497
  }