Fix system vm poll

This commit is contained in:
Brian Federle 2011-11-09 14:08:58 -08:00
parent 77e5e60dc1
commit fa6fe67f14

View File

@ -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));