From 84299509b724760457638715dc60c942aa9f2c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20M=C3=BCller?= Date: Fri, 19 Nov 2021 14:40:27 +0100 Subject: [PATCH] Increase timeout of axios client --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 8b9c37a..2b43c01 100644 --- a/index.js +++ b/index.js @@ -633,7 +633,7 @@ try { const instance = axios.create({ baseURL: `https://${serviceHost}`, - timeout: 5000, + timeout: 10000, headers: { 'Authorization': `API-Key ${apiKey}` }, });