Skip to content

Commit

Permalink
Fixing VrsInfo in me file
Browse files Browse the repository at this point in the history
  • Loading branch information
pdellaert committed Nov 4, 2020
1 parent d521d99 commit ca80b69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vspk/me.go
Original file line number Diff line number Diff line change
Expand Up @@ -1014,10 +1014,10 @@ func (o *Me) VCenterVRSConfigs(info *bambou.FetchingInfo) (VCenterVRSConfigsList
}

// vrsInfos retrieves the list of child vrsInfos of the Me
func (o *Me) vrsInfos(info *bambou.FetchingInfo) (vrsInfosList, *bambou.Error) {
func (o *Me) VrsInfos(info *bambou.FetchingInfo) (VrsInfosList, *bambou.Error) {

var list vrsInfosList
err := bambou.CurrentSession().FetchChildren(o, vrsInfoIdentity, &list, info)
var list VrsInfosList
err := bambou.CurrentSession().FetchChildren(o, VrsInfoIdentity, &list, info)
return list, err
}

Expand Down

0 comments on commit ca80b69

Please sign in to comment.