@gravito/stream 1.0.1 → 1.0.2
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
|
@@ -2220,8 +2220,7 @@ var OrbitStream = class _OrbitStream {
|
|
|
2220
2220
|
}
|
|
2221
2221
|
}
|
|
2222
2222
|
c.set("queue", this.queueManager);
|
|
2223
|
-
await next();
|
|
2224
|
-
return void 0;
|
|
2223
|
+
return await next();
|
|
2225
2224
|
});
|
|
2226
2225
|
core.logger.info("[OrbitStream] Installed");
|
|
2227
2226
|
if (this.options.autoStartWorker && process.env.NODE_ENV === "development" && this.options.workerOptions) {
|
package/dist/index.js
CHANGED
|
@@ -2193,8 +2193,7 @@ var OrbitStream = class _OrbitStream {
|
|
|
2193
2193
|
}
|
|
2194
2194
|
}
|
|
2195
2195
|
c.set("queue", this.queueManager);
|
|
2196
|
-
await next();
|
|
2197
|
-
return void 0;
|
|
2196
|
+
return await next();
|
|
2198
2197
|
});
|
|
2199
2198
|
core.logger.info("[OrbitStream] Installed");
|
|
2200
2199
|
if (this.options.autoStartWorker && process.env.NODE_ENV === "development" && this.options.workerOptions) {
|