1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

F #4021: GOCA - fix bad XML-RPC method (#4065)

Signed-off-by: Pierre Lafievre <pierre.lafievre@iguanesolutions.com>
(cherry picked from commit ad54b98cb73534ddbe396509f7d0c6dae7bb4e44)
This commit is contained in:
Pierre Lafievre 2019-12-23 17:35:28 +01:00 committed by Ruben S. Montero
parent c8780da017
commit 055584b3c9
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -147,7 +147,7 @@ func (vc *VMsController) InfoExtendedFilter(f *VMFilter) (*vm.Pool, error) {
return nil, fmt.Errorf("InfoFilter: nil parameter passed.")
}
response, err := vc.c.Client.Call("one.vmpool.info", f.toArgs()...)
response, err := vc.c.Client.Call("one.vmpool.infoextended", f.toArgs()...)
if err != nil {
return nil, err
}