From 26f499b17b058b3994ea5b480f4c2ac56f672cd9 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 1 Jul 2020 13:46:00 +0200 Subject: [PATCH] ui: increase timeout for snapshot listing the api call can take a very long time (for now), until we can improve that, increase the timeout from the default of 30s Signed-off-by: Dominik Csapak --- www/DataStoreContent.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/DataStoreContent.js b/www/DataStoreContent.js index 5bb0623a..16314b48 100644 --- a/www/DataStoreContent.js +++ b/www/DataStoreContent.js @@ -79,6 +79,7 @@ Ext.define('PBS.DataStoreContent', { let url = `/api2/json/admin/datastore/${view.datastore}/snapshots`; this.store.setProxy({ type: 'proxmox', + timeout: 300*1000, // 5 minutes, we should make that api call faster url: url });