Skip to content

Commit

Permalink
fix: urgent timeout increase to fix outage (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterMoar authored Oct 13, 2023
1 parent 02f02dd commit 58fa7ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/frontend/src/services/interceptors.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 58fa7ac

Please sign in to comment.