File tree 2 files changed +30
-3
lines changed
services/backend-api/client/src
2 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { useUserMe } from "../features/discordUser";
16
16
import { pages , PRODUCT_NAMES , ProductKey } from "../constants" ;
17
17
import { CheckoutSummaryData } from "../types/CheckoutSummaryData" ;
18
18
import { PricePreview } from "../types/PricePreview" ;
19
+ import { retryPromise } from "../utils/retryPromise" ;
19
20
20
21
const pwAuth = import . meta. env . VITE_PADDLE_PW_AUTH ;
21
22
const clientToken = import . meta. env . VITE_PADDLE_CLIENT_TOKEN ;
@@ -173,9 +174,11 @@ export const PaddleContextProvider = ({ children }: PropsWithChildren<{}>) => {
173
174
> = { } ;
174
175
175
176
try {
176
- const previewData = await paddle . PricePreview ( {
177
- items : priceIdsToGet . map ( ( priceId ) => ( { priceId, quantity : 1 } ) ) ,
178
- } ) ;
177
+ const previewData = await retryPromise ( async ( ) =>
178
+ paddle . PricePreview ( {
179
+ items : priceIdsToGet . map ( ( priceId ) => ( { priceId, quantity : 1 } ) ) ,
180
+ } )
181
+ ) ;
179
182
180
183
const { details, currencyCode } = previewData . data ;
181
184
Original file line number Diff line number Diff line change
1
+ /**
2
+ * A function to retry a promise with exponential backoff
3
+ */
4
+ export const retryPromise = async < T > (
5
+ promise : ( ) => Promise < T > ,
6
+ retries = 3 ,
7
+ delay = 1000
8
+ ) : Promise < T > => {
9
+ try {
10
+ return await promise ( ) ;
11
+ } catch ( error ) {
12
+ if ( retries <= 0 ) {
13
+ throw error ;
14
+ }
15
+
16
+ await new Promise < void > ( ( resolve ) => {
17
+ setTimeout ( ( ) => {
18
+ resolve ( ) ;
19
+ } , delay ) ;
20
+ } ) ;
21
+
22
+ return retryPromise ( promise , retries - 1 , delay * 2 ) ;
23
+ }
24
+ } ;
You can’t perform that action at this time.
0 commit comments