Correcting minor typos

Change-Id: I7c8398d76c305e9f70be9a1a3737d1fe32b2268e
This commit is contained in:
Prabhjyot Singh Sodhi
2015-01-26 17:18:48 +05:30
parent 2455db7f64
commit a92d4bf252
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ Accordingly, the user may specify the names and parameters of benchmark scenario
In this example, the task configuration file specifies two benchmarks to be run, namely **"NovaServers.boot_server"** and **"CinderVolumes.create_volume"** (benchmark name = *ScenarioClassName.method_name*). Each benchmark scenario may be started several times with different parameters. In our example, that's the case with **"NovaServers.boot_server"**, which is used to test booting servers from different images & flavors.
Note that inside each scenario configuration, the benchmark scenario is actually launched **3 times** (that is specified in the **"runner"** field). It can be specified in **"runner"** in more detail how exactly the benchmark scenario should be launched; we elaborate on that in the *"Sceario Runners"* section below.
Note that inside each scenario configuration, the benchmark scenario is actually launched **3 times** (that is specified in the **"runner"** field). It can be specified in **"runner"** in more detail how exactly the benchmark scenario should be launched; we elaborate on that in the *"Scenario Runners"* section below.
.. _ScenariosDevelopment:

View File

@@ -346,7 +346,7 @@ class NovaScenario(base.Scenario):
**kwargs)
# NOTE(msdubov): Nova python client returns only one server even when
# min_count > 1, so we have to rediscover all the
# created servers manyally.
# created servers manually.
servers = filter(lambda server: server.name.startswith(name_prefix),
self.clients("nova").servers.list())
time.sleep(CONF.benchmark.nova_server_boot_prepoll_delay)