From fa6fe67f1429a36213910d2a4c7b4ffb2b30aa6b Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 9 Nov 2011 14:08:58 -0800 Subject: [PATCH] Fix system vm poll --- ui/scripts/installWizard.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/scripts/installWizard.js b/ui/scripts/installWizard.js index bdd95d3cc0f..45ff682a721 100644 --- a/ui/scripts/installWizard.js +++ b/ui/scripts/installWizard.js @@ -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)); \ No newline at end of file +}(jQuery, cloudStack, testData));