fix(syncing-server): increase axios timeout on calling auth

This commit is contained in:
Karol Sójko
2023-10-06 15:18:26 +02:00
parent ba050681f7
commit eafb064d79

View File

@@ -12,6 +12,7 @@ export class AuthHttpService implements AuthHttpServiceInterface {
async getUserKeyParams(dto: { email?: string; uuid?: string; authenticated: boolean }): Promise<KeyParamsData> {
const keyParamsResponse = await this.httpClient.request({
method: 'GET',
timeout: 10000,
headers: {
Accept: 'application/json',
},