Skip to content

Commit

Permalink
fix: axios instance timeout
Browse files Browse the repository at this point in the history
Signed-off-by: Oleksii Orel <[email protected]>
  • Loading branch information
olexii4 committed Feb 19, 2025
1 parent 4015e95 commit 199d092
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CheAxiosInstance {
private readonly axiosInstance: AxiosInstance;

private constructor() {
this.axiosInstance = axios.create({ timeout: 15000 });
this.axiosInstance = axios.create({ timeout: 30000 });
}

public static getInstance(): CheAxiosInstance {
Expand Down

0 comments on commit 199d092

Please sign in to comment.