Bug #1294
wrong action for restart method in java oca
Status: | Closed | Start date: | 05/24/2012 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | Carlos Martín | % Done: | 0% | |
Category: | Client API & Library | |||
Target version: | Release 3.6 | |||
Resolution: | fixed | Pull request: | ||
Affected Versions: | OpenNebula 3.4 |
Description
Hi,
in org.opennebula.client.vm.VirtualMachine.java the wrong action is chosen in the restart() method . I noticed this bug in 3.4.0 as well as in 3.4.1, don't know about the current dev branch:
@public OneResponse restart()
{
return action("shutdown");
}@
should be:
@public OneResponse restart()
{
return action("restart");
}@
Associated revisions
History
#1 Updated by Carlos Martín about 9 years ago
- Category set to Client API & Library
- Status changed from New to Closed
- Assignee set to Carlos Martín
- Target version set to Release 3.6
- Resolution set to fixed
Fixed in repo and the 3.4.1 tar.gz file linked from
http://opennebula.org/documentation:rel3.4:java
Thanks for the feedback!!