From 6e0f525d04cc506c783648f4ba75129900d5b90c Mon Sep 17 00:00:00 2001 From: Siddhant Sinha Date: Tue, 4 Feb 2025 10:14:27 -0500 Subject: [PATCH] [Queues] Fix paramter name in pull consumer docs --- src/content/docs/queues/configuration/pull-consumers.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/queues/configuration/pull-consumers.mdx b/src/content/docs/queues/configuration/pull-consumers.mdx index ca58cd2572b3e1..2cd310b13beb74 100644 --- a/src/content/docs/queues/configuration/pull-consumers.mdx +++ b/src/content/docs/queues/configuration/pull-consumers.mdx @@ -127,7 +127,7 @@ let resp = await fetch( authorization: `Bearer ${QUEUES_API_TOKEN}`, }, // Optional - you can provide an empty object '{}' and the defaults will apply. - body: JSON.stringify({ visibility_timeout: 6000, batch_size: 50 }), + body: JSON.stringify({ visibility_timeout_ms: 6000, batch_size: 50 }), }, ); ```