70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
26 lines
460 B
JSON
26 lines
460 B
JSON
{
|
|
"name": "queues",
|
|
"main": "src/index.ts",
|
|
// don't provide compatibility_date so that vitest will infer the latest one
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "QUEUE_RESULTS",
|
|
"id": "00000000000000000000000000000000",
|
|
},
|
|
],
|
|
"queues": {
|
|
"producers": [
|
|
{
|
|
"binding": "QUEUE_PRODUCER",
|
|
"queue": "queue",
|
|
},
|
|
],
|
|
"consumers": [
|
|
{
|
|
"queue": "queue",
|
|
"max_batch_timeout": 3, // Overridden in `vitest.config.mts`
|
|
},
|
|
],
|
|
},
|
|
}
|