Skip to content

Commit

Permalink
Ref attribute is object, not a dict
Browse files Browse the repository at this point in the history
 Closes-Bug: 1551049

Change-Id: Ide6665c209fb3f8f209bb5dbde9f45347c7d9e7b
  • Loading branch information
Sachin Bansal committed Feb 29, 2016
1 parent f14892a commit a2cdff0
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 @@ -3835,7 +3835,7 @@ def __init__(self, name, obj=None):
self.routing_instances.add(ri_name)
ri = RoutingInstanceST.get(ri_name)
if ri:
ri.routing_policys[self.name] = ref['attr']['sequence']
ri.routing_policys[self.name] = ref['attr'].sequence
# end __init__

def update(self, obj=None):
Expand Down

0 comments on commit a2cdff0

Please sign in to comment.