ui: tape/ChangerStatus: increase timeout for api calls

since tape commands can take a while and we do not want to change
all of those to worker tasks, increase the timeout to 5 minutes

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-02-15 12:18:19 +01:00 committed by Dietmar Maurer
parent 159100b944
commit b0338178d7

View File

@ -138,6 +138,7 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
try { try {
await PBS.Async.api2({ await PBS.Async.api2({
method: 'PUT', method: 'PUT',
timeout: 5*60*1000,
url: `/api2/extjs/tape/drive/${encodeURIComponent(drive)}/unload`, url: `/api2/extjs/tape/drive/${encodeURIComponent(drive)}/unload`,
}); });
Proxmox.Utils.setErrorMask(view); Proxmox.Utils.setErrorMask(view);
@ -156,6 +157,7 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
method = method || 'GET'; method = method || 'GET';
Proxmox.Utils.API2Request({ Proxmox.Utils.API2Request({
url: `/api2/extjs/tape/drive/${driveid}/${command}`, url: `/api2/extjs/tape/drive/${driveid}/${command}`,
timeout: 5*60*1000,
method, method,
waitMsgTarget: view, waitMsgTarget: view,
params, params,
@ -384,13 +386,16 @@ Ext.define('PBS.TapeManagement.ChangerStatus', {
Proxmox.Utils.setErrorMask(view, true); Proxmox.Utils.setErrorMask(view, true);
Proxmox.Utils.setErrorMask(me.lookup('content')); Proxmox.Utils.setErrorMask(me.lookup('content'));
let status_fut = PBS.Async.api2({ let status_fut = PBS.Async.api2({
timeout: 5*60*1000,
url: `/api2/extjs/tape/changer/${encodeURIComponent(changer)}/status`, url: `/api2/extjs/tape/changer/${encodeURIComponent(changer)}/status`,
}); });
let drives_fut = PBS.Async.api2({ let drives_fut = PBS.Async.api2({
timeout: 5*60*1000,
url: `/api2/extjs/tape/drive?changer=${encodeURIComponent(changer)}`, url: `/api2/extjs/tape/drive?changer=${encodeURIComponent(changer)}`,
}); });
let tapes_fut = PBS.Async.api2({ let tapes_fut = PBS.Async.api2({
timeout: 5*60*1000,
url: '/api2/extjs/tape/media/list', url: '/api2/extjs/tape/media/list',
}); });