mirror of https://github.com/apache/cloudstack.git
Fix system vm poll
This commit is contained in:
parent
77e5e60dc1
commit
fa6fe67f14
|
|
@ -175,7 +175,7 @@
|
|||
var pollSystemVMs = function() {
|
||||
var poll = setInterval(function() {
|
||||
$.ajax({
|
||||
url: createURL('listSystemVMs'),
|
||||
url: createURL('listSystemVms'),
|
||||
dataType: 'json',
|
||||
async: true,
|
||||
success: function(data) {
|
||||
|
|
@ -184,11 +184,11 @@
|
|||
complete();
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
}, 1000);
|
||||
};
|
||||
|
||||
createZone();
|
||||
}
|
||||
};
|
||||
}(jQuery, cloudStack, testData));
|
||||
}(jQuery, cloudStack, testData));
|
||||
|
|
|
|||
Loading…
Reference in New Issue