Skip to content

Commit 347f3b3

Browse files
committed
fix: remove retries plan limits info
1 parent 749628b commit 347f3b3

3 files changed

Lines changed: 6 additions & 13 deletions

File tree

_snippets/qstash-common-request.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ For example `application/json`, `application/xml`, `application/octet-stream`,
3030

3131
The total number of deliveries is therefore capped at `1 + retries`
3232

33-
Leave this empty to use the default value, (free tier: 3, paid tier: 5)
33+
Leave this empty to use the default value of 3 retries.
3434

3535
The default backoff duration in seconds is calculated as follows: `n` is the number of
3636
times the task has been retried.

qstash/features/retry.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@ Many things can go wrong in a serverless environment. If your API does not
1111
respond with a success status code (2XX), we retry the request to ensure every
1212
message will be delivered.
1313

14-
The maximum number of retries depends on your current plan. By default, we retry
15-
the maximum amount of times, but you can set it lower by sending the
16-
`Upstash-Retries` header:
14+
By default, we retry a failed delivery 3 times. You can change this per message
15+
by sending the `Upstash-Retries` header:
1716

1817
<CodeGroup>
1918
```shell cURL

qstash/openapi.yaml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -632,9 +632,7 @@ paths:
632632
633633
The total number of deliveries is 1 (initial attempt) + retries.
634634
635-
If it is not provided, the plan default retry value will be used:
636-
- Free Plan: 3 retries
637-
- Paid Plans: 5 retries
635+
If it is not provided, the default of 3 retries is used.
638636
639637
- name: Upstash-Retry-Delay
640638
in: header
@@ -987,9 +985,7 @@ paths:
987985
988986
The total number of deliveries is 1 (initial attempt) + retries.
989987
990-
If it is not provided, the plan default retry value will be used:
991-
- Free Plan: 3 retries
992-
- Paid Plans: 5 retries
988+
If it is not provided, the default of 3 retries is used.
993989
994990
- name: Upstash-Retry-Delay
995991
in: header
@@ -1718,9 +1714,7 @@ paths:
17181714
How many times should this message be retried in case the destination API returns an error or is not available.
17191715
The total number of deliveries is 1 (initial attempt) + retries.
17201716
1721-
If it is not provided, the plan default retry value will be used:
1722-
- Free Plan: 3 retries
1723-
- Paid Plans: 5 retries
1717+
If it is not provided, the default of 3 retries is used.
17241718
17251719
- name: Upstash-Retry-Delay
17261720
in: header

0 commit comments

Comments
 (0)