From 58fa7ac0dbbaca7870a306b06cf69ef1e2fb9d8e Mon Sep 17 00:00:00 2001 From: Walter Moar Date: Fri, 13 Oct 2023 12:40:29 -0700 Subject: [PATCH] fix: urgent timeout increase to fix outage (#1084) --- app/frontend/src/services/interceptors.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/frontend/src/services/interceptors.js b/app/frontend/src/services/interceptors.js index 843fa48ce..8a952dadf 100755 --- a/app/frontend/src/services/interceptors.js +++ b/app/frontend/src/services/interceptors.js @@ -7,7 +7,8 @@ import Vue from 'vue'; * @param {integer} [timeout=10000] Number of milliseconds before timing out the request * @returns {object} An axios instance */ -export function appAxios(timeout = 10000) { +export function appAxios(timeout = 20000) { + // 2023-10-13 urgent increase to fix outage const axiosOptions = { timeout: timeout }; if (Vue.prototype.$config) { const config = Vue.prototype.$config;