summaryrefslogtreecommitdiffstats
path: root/nfvbench
diff options
context:
space:
mode:
Diffstat (limited to 'nfvbench')
-rw-r--r--nfvbench/chaining.py4
-rw-r--r--nfvbench/compute.py1
2 files changed, 3 insertions, 2 deletions
diff --git a/nfvbench/chaining.py b/nfvbench/chaining.py
index a5ae680..fa9b799 100644
--- a/nfvbench/chaining.py
+++ b/nfvbench/chaining.py
@@ -715,8 +715,8 @@ class InstancePlacer(object):
if req_az:
self.required_az = req_az + ':' + self.requested_hyp
else:
- # no ":" needed
- self.required_az = self.requested_hyp if req_hyp else ''
+ # need to insert a ':' so nova knows this is the hypervisor name
+ self.required_az = ':' + self.requested_hyp if req_hyp else ''
# placement is resolved when both AZ and hypervisor names are known and set
self.resolved = self.requested_az != '' and self.requested_hyp != ''
diff --git a/nfvbench/compute.py b/nfvbench/compute.py
index d5a8119..97fd166 100644
--- a/nfvbench/compute.py
+++ b/nfvbench/compute.py
@@ -107,6 +107,7 @@ class Compute(object):
security_groups = None
# Also attach the created security group for the test
+ LOG.info('Creating instance %s with AZ %s', vmname, avail_zone)
instance = self.novaclient.servers.create(name=vmname,
image=image,
flavor=flavor,