@cloudflare/vitest-pool-workers 0.16.2 → 0.16.3
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/pool/index.mjs +1 -0
- package/dist/pool/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/pool/index.mjs
CHANGED
|
@@ -8940,6 +8940,7 @@ var validateQueueBinding = /* @__PURE__ */ __name((diagnostics, field, value) =>
|
|
|
8940
8940
|
diagnostics.errors.push(`"${field}" should, optionally, have a ${optionalOpt.type} "${optionalOpt.key}" field but got ${JSON.stringify(value)}.`);
|
|
8941
8941
|
isValid2 = false;
|
|
8942
8942
|
}
|
|
8943
|
+
if (hasProperty(value, "delivery_delay") && value.delivery_delay !== void 0) diagnostics.warnings.push(`The "delivery_delay" field in "${field}" is deprecated and has no effect. Queue-level settings should be configured using "wrangler queues update" instead. This setting will be removed in a future version.`);
|
|
8943
8944
|
if (!isRemoteValid(value, field, diagnostics)) isValid2 = false;
|
|
8944
8945
|
return isValid2;
|
|
8945
8946
|
}, "validateQueueBinding");
|