1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

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

Signed-off-by: Pierre Lafievre <pierre.lafievre@iguanesolutions.com>
This commit is contained in:
Pierre Lafievre 2019-12-23 17:35:28 +01:00 committed by Ruben S. Montero
parent 10659af17a
commit ad54b98cb7

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
}