@gravito/horizon 2.0.0 → 3.0.0
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/dist/index.cjs +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -8550,8 +8550,7 @@ var OrbitHorizon = class {
|
|
|
8550
8550
|
core.services.set(exposeAs, scheduler);
|
|
8551
8551
|
core.adapter.use("*", async (c, next) => {
|
|
8552
8552
|
c.set("scheduler", scheduler);
|
|
8553
|
-
await next();
|
|
8554
|
-
return void 0;
|
|
8553
|
+
return await next();
|
|
8555
8554
|
});
|
|
8556
8555
|
core.logger.info(`[OrbitHorizon] Initialized (Driver: ${lockDriver})`);
|
|
8557
8556
|
}
|
package/dist/index.js
CHANGED
|
@@ -729,8 +729,7 @@ var OrbitHorizon = class {
|
|
|
729
729
|
core.services.set(exposeAs, scheduler);
|
|
730
730
|
core.adapter.use("*", async (c, next) => {
|
|
731
731
|
c.set("scheduler", scheduler);
|
|
732
|
-
await next();
|
|
733
|
-
return void 0;
|
|
732
|
+
return await next();
|
|
734
733
|
});
|
|
735
734
|
core.logger.info(`[OrbitHorizon] Initialized (Driver: ${lockDriver})`);
|
|
736
735
|
}
|