Skip to content

Commit

Permalink
fix(serverGroup): Increase the timeout for api request (#8812)
Browse files Browse the repository at this point in the history
Signed-off-by: KeisukeYamashita <19yamashita15@gmail.com>
  • Loading branch information
KeisukeYamashita committed Dec 21, 2020
1 parent 29a85a0 commit c32c91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/api/ApiService.ts
Expand Up @@ -249,7 +249,7 @@ export function makeRequestBuilderConfig(pathPrefix?: string): IRequestBuilderCo
cache: false,
data: undefined,
params: {},
timeout: (SETTINGS.pollSchedule || 3000) * 2 + 5000,
timeout: (SETTINGS.pollSchedule || 30000) * 2 + 5000,
headers: { 'X-RateLimit-App': 'deck' },
};
}
Expand Down

0 comments on commit c32c91a

Please sign in to comment.