API replay: parse properly SG rules in LOG statement
An error in parsing the data structure is the cause of an exception raised during logging; because of this API replay fails. Change-Id: I4846f674f56dd414719c595a592c3135ba536d02
This commit is contained in:
parent
e7315ff3ba
commit
445be3afb4
@ -456,7 +456,8 @@ class ApiReplayClient(utils.PrepareObjectForMigration):
|
||||
{'security_group_rules': rules_dict[sg_id]})
|
||||
LOG.info("Created %d security group rules for SG %s: %s",
|
||||
len(rules), sg_id,
|
||||
",".join([rule.get('id') for rule in rules]))
|
||||
",".join([rule.get('id') for rule in
|
||||
rules.get('security_group_rules', [])]))
|
||||
except Exception as e:
|
||||
self.add_error("Failed to create security group %s "
|
||||
"rules: %s" % (sg_id, e))
|
||||
|
Loading…
x
Reference in New Issue
Block a user