mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-06-05 16:00:05 +00:00
22 lines
477 B
JavaScript
22 lines
477 B
JavaScript
Ext.define('PVE.ceph.Log', {
|
|
extend: 'Proxmox.panel.LogView',
|
|
xtype: 'cephLogView',
|
|
|
|
nodename: undefined,
|
|
|
|
failCallback: function(response) {
|
|
var me = this;
|
|
var msg = response.htmlStatus;
|
|
var windowShow = PVE.Utils.showCephInstallOrMask(me, msg, me.nodename,
|
|
function(win) {
|
|
me.mon(win, 'cephInstallWindowClosed', function() {
|
|
me.loadTask.delay(200);
|
|
});
|
|
},
|
|
);
|
|
if (!windowShow) {
|
|
Proxmox.Utils.setErrorMask(me, msg);
|
|
}
|
|
},
|
|
});
|