From edc4efa84149547ba2e8235cd84e8f53caf5f14a Mon Sep 17 00:00:00 2001 From: Artur Riabtsun Date: Mon, 25 Sep 2023 10:06:16 +0200 Subject: [PATCH] feat(remote-sync): Increase timeout for api location request --- build/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/webpack.config.js b/build/webpack.config.js index bf7523809..e53c75d2a 100644 --- a/build/webpack.config.js +++ b/build/webpack.config.js @@ -86,7 +86,7 @@ function updateConfig(conf, language, index) { if (rsyncApiLocation) { const serverResponse = execSync( - `curl -sk -H "Content-Type: application/json" --connect-timeout 1 ${rsyncApiLocation.url}`, + `curl -sk -H "Content-Type: application/json" --connect-timeout 3 ${rsyncApiLocation.url}`, ) .toString() .replace('\n', '');