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:
Salvatore Orlando 2021-06-03 06:31:35 -07:00 committed by Kobi Samoray
parent e7315ff3ba
commit 445be3afb4

View File

@ -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))