Skip to content

Commit

Permalink
ref['attr'] is a dict, not an object
Browse files Browse the repository at this point in the history
Change-Id: I164b019bcb3e0c8a1a643affa8e4295cbe3320da
Closes-Bug: 1541221
  • Loading branch information
Sachin Bansal committed Feb 3, 2016
1 parent 40fbf6a commit 4e19dca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/schema-transformer/config_db.py
Expand Up @@ -3518,7 +3518,7 @@ def __init__(self, name, obj=None):
for ref in self.obj.get_routing_policy_back_refs() or []:
self.routing_policys[':'.join(ref['to'])] = ref['attr']
for ref in self.obj.get_route_aggregate_back_refs() or []:
self.route_aggregate[':'.join(ref['to'])] = ref['attr'].interface_type
self.route_aggregate[':'.join(ref['to'])] = ref['attr']['interface_type']
self.set_children('port_tuple', self.obj)
# end __init__

Expand Down

0 comments on commit 4e19dca

Please sign in to comment.