@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/browser.js
CHANGED
|
@@ -7755,7 +7755,8 @@ var defaultJobQueueFactory = async ({
|
|
|
7755
7755
|
deleteAfterCompletionMs: options?.deleteAfterCompletionMs,
|
|
7756
7756
|
deleteAfterFailureMs: options?.deleteAfterFailureMs,
|
|
7757
7757
|
deleteAfterDisabledMs: options?.deleteAfterDisabledMs,
|
|
7758
|
-
cleanupIntervalMs: options?.cleanupIntervalMs
|
|
7758
|
+
cleanupIntervalMs: options?.cleanupIntervalMs,
|
|
7759
|
+
stopTimeoutMs: options?.stopTimeoutMs
|
|
7759
7760
|
});
|
|
7760
7761
|
const client = new JobQueueClient({
|
|
7761
7762
|
storage,
|
|
@@ -7788,7 +7789,8 @@ function createJobQueueFactoryWithOptions(defaultOptions = {}) {
|
|
|
7788
7789
|
deleteAfterCompletionMs: mergedOptions.deleteAfterCompletionMs,
|
|
7789
7790
|
deleteAfterFailureMs: mergedOptions.deleteAfterFailureMs,
|
|
7790
7791
|
deleteAfterDisabledMs: mergedOptions.deleteAfterDisabledMs,
|
|
7791
|
-
cleanupIntervalMs: mergedOptions.cleanupIntervalMs
|
|
7792
|
+
cleanupIntervalMs: mergedOptions.cleanupIntervalMs,
|
|
7793
|
+
stopTimeoutMs: mergedOptions.stopTimeoutMs
|
|
7792
7794
|
});
|
|
7793
7795
|
const client = new JobQueueClient({
|
|
7794
7796
|
storage,
|
|
@@ -9185,4 +9187,4 @@ export {
|
|
|
9185
9187
|
BROWSER_GRANTS
|
|
9186
9188
|
};
|
|
9187
9189
|
|
|
9188
|
-
//# debugId=
|
|
9190
|
+
//# debugId=6B87161C982F44CB64756E2164756E21
|