Skip to content

Commit

Permalink
Properly handle FQN of ConfigRoot.
Browse files Browse the repository at this point in the history
Change-Id: Id6de5ff5a5e574308f92c3eeed451860768bc94f
Closes-Bug: #1771554
  • Loading branch information
danieljasinski committed May 16, 2018
1 parent c818c42 commit 2c6c80a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/net/juniper/contrail/api/ApiObjectBase.java
Expand Up @@ -84,6 +84,9 @@ protected void updateQualifiedName() {
}

public List<String> getQualifiedName() {
if ("config-root".equals(getObjectType()))
return new ArrayList<String>();

updateQualifiedName();
return new ArrayList<String>(fq_name);
}
Expand Down

0 comments on commit 2c6c80a

Please sign in to comment.