@workglow/task-graph 0.2.23 → 0.2.24
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/browser.js +5 -3
- package/dist/browser.js.map +3 -3
- package/dist/bun.js +5 -3
- package/dist/bun.js.map +3 -3
- package/dist/node.js +5 -3
- package/dist/node.js.map +3 -3
- package/dist/task/JobQueueFactory.d.ts +1 -0
- package/dist/task/JobQueueFactory.d.ts.map +1 -1
- package/package.json +7 -7
package/dist/bun.js
CHANGED
|
@@ -7756,7 +7756,8 @@ var defaultJobQueueFactory = async ({
|
|
|
7756
7756
|
deleteAfterCompletionMs: options?.deleteAfterCompletionMs,
|
|
7757
7757
|
deleteAfterFailureMs: options?.deleteAfterFailureMs,
|
|
7758
7758
|
deleteAfterDisabledMs: options?.deleteAfterDisabledMs,
|
|
7759
|
-
cleanupIntervalMs: options?.cleanupIntervalMs
|
|
7759
|
+
cleanupIntervalMs: options?.cleanupIntervalMs,
|
|
7760
|
+
stopTimeoutMs: options?.stopTimeoutMs
|
|
7760
7761
|
});
|
|
7761
7762
|
const client = new JobQueueClient({
|
|
7762
7763
|
storage,
|
|
@@ -7789,7 +7790,8 @@ function createJobQueueFactoryWithOptions(defaultOptions = {}) {
|
|
|
7789
7790
|
deleteAfterCompletionMs: mergedOptions.deleteAfterCompletionMs,
|
|
7790
7791
|
deleteAfterFailureMs: mergedOptions.deleteAfterFailureMs,
|
|
7791
7792
|
deleteAfterDisabledMs: mergedOptions.deleteAfterDisabledMs,
|
|
7792
|
-
cleanupIntervalMs: mergedOptions.cleanupIntervalMs
|
|
7793
|
+
cleanupIntervalMs: mergedOptions.cleanupIntervalMs,
|
|
7794
|
+
stopTimeoutMs: mergedOptions.stopTimeoutMs
|
|
7793
7795
|
});
|
|
7794
7796
|
const client = new JobQueueClient({
|
|
7795
7797
|
storage,
|
|
@@ -8549,4 +8551,4 @@ export {
|
|
|
8549
8551
|
BROWSER_GRANTS
|
|
8550
8552
|
};
|
|
8551
8553
|
|
|
8552
|
-
//# debugId=
|
|
8554
|
+
//# debugId=39E3171FAD67095564756E2164756E21
|