From:Jason Bausewein [[email protected]] I needed to change the case in the sim url so the SimulatorDiscover will detect the simulator hosts
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/356ab7b0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/356ab7b0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/356ab7b0 Branch: refs/heads/master Commit: 356ab7b01335ed83cdcafe9ed5a477bbfe1c9e0b Parents: 49b8847 Author: Edison Su <[email protected]> Authored: Fri Jun 22 10:21:09 2012 -0700 Committer: Edison Su <[email protected]> Committed: Fri Jun 22 10:21:09 2012 -0700 ---------------------------------------------------------------------- tools/testClient/configGenerator.py | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/356ab7b0/tools/testClient/configGenerator.py ---------------------------------------------------------------------- diff --git a/tools/testClient/configGenerator.py b/tools/testClient/configGenerator.py index a5bf0ea..52373bf 100644 --- a/tools/testClient/configGenerator.py +++ b/tools/testClient/configGenerator.py @@ -198,8 +198,8 @@ def describe_setup_in_basic_mode(): h.password = "password" memory = 8*1024*1024*1024 localstorage=1*1024*1024*1024*1024 - #h.url = "http://Sim/%d%d%d%d/cpucore=1&cpuspeed=8000&memory=%d&localstorage=%d"%(l,i,j,k,memory,localstorage) - h.url = "http://Sim/%d%d%d%d"%(l,i,j,k) + #h.url = "http://sim/%d%d%d%d/cpucore=1&cpuspeed=8000&memory=%d&localstorage=%d"%(l,i,j,k,memory,localstorage) + h.url = "http://sim/%d%d%d%d"%(l,i,j,k) c.hosts.append(h) '''add 2 primary storages''' @@ -297,8 +297,8 @@ def describe_setup_in_advanced_mode(): h.password = "password" memory = 8*1024*1024*1024 localstorage=1*1024*1024*1024*1024 - #h.url = "http://Sim/%d%d%d%d/cpucore=1&cpuspeed=8000&memory=%d&localstorage=%d"%(l,i,j,k,memory,localstorage) - h.url = "http://Sim/%d%d%d%d"%(l,i,j,k) + #h.url = "http://sim/%d%d%d%d/cpucore=1&cpuspeed=8000&memory=%d&localstorage=%d"%(l,i,j,k,memory,localstorage) + h.url = "http://sim/%d%d%d%d"%(l,i,j,k) c.hosts.append(h) '''add 2 primary storages'''
