Skip to content

Commit

Permalink
fix: change HTTP timeout to 20 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
sogunshola committed Nov 21, 2022
1 parent 64df094 commit 24faa19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class RequestController {
try {
const response = await AxiosRetry.request<Data, Response>(retryConfig, {
...config,
timeout: 10000,
timeout: 20000,
});
return response.data;
} catch (e) {
Expand Down

0 comments on commit 24faa19

Please sign in to comment.