Bug 1350966
| Summary: | REST-API v3 | Failed to destroy a storage domain | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [oVirt] ovirt-engine | Reporter: | Raz Tamir <ratamir> | ||||
| Component: | RestAPI | Assignee: | Juan Hernández <juan.hernandez> | ||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Raz Tamir <ratamir> | ||||
| Severity: | high | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 4.0.0 | CC: | acanan, bugs, ratamir, tnisan | ||||
| Target Milestone: | ovirt-4.0.1 | Keywords: | Automation, Regression | ||||
| Target Release: | 4.0.1.1 | Flags: | rule-engine:
ovirt-4.0.z+
rule-engine: blocker+ rule-engine: planning_ack+ juan.hernandez: devel_ack+ acanan: testing_ack+ |
||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2016-07-19 06:23:36 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | Infra | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
What version of the API? v3 - see the summary This bug report has Keywords: Regression or TestBlocker. Since no regressions or test blockers are allowed between releases, it is also being identified as a blocker for this release. Please resolve ASAP. Thanks Raz, I somehow missed the subject. The problem is that the V3 is ignoring the "destroy" parameter because there is a typo in the code. We will fix it. Note that this only affects V3 of the API, V4 works correctly, if you want to use it as a workaround. Remember that in V4 of the API DELETE operations never have a body, they use parameters instead:
DELETE /ovirt-engine/api/storagedomains/{sd:id}?host={host:id}&format=false&destroy=true
Thanks Verified on rhevm-4.0.2-0.2.rc1.el7ev.noarch Since the problem described in this bug report should be resolved in oVirt 4.0.1 released on July 19th 2016, it has been closed with a resolution of CURRENT RELEASE. For information on the release, and how to update to this release, follow the link below. If the solution does not work for you, open a new bug report. http://www.ovirt.org/release/4.0.1/ |
Created attachment 1173549 [details] engine and vdsm logs Description of problem: When trying to destroy a storage domain (in maintenance) using the REST API the response is: Status: 409 Reason: Conflict Detail: [Cannot remove Storage. The relevant Storage Domain is inaccessible. -Please handle Storage Domain issues and retry the operation.] Also in the rsdl, the description is odd: <link href="/ovirt-engine/api/storagedomains/{storagedomain:id}" rel="delete"> <description>delete the specified storage domain in the system</description> <request> <http_method>DELETE</http_method> <headers> <header required="false"> <name>Correlation-Id</name> <value>any string</value> </header> <header required="true"> <name>Content-Type</name> <value>application/xml|json</value> </header> </headers> <url> <parameters_set> <parameter required="false" type="xs:boolean" context="matrix"> <name>force</name> <value>true|false</value> </parameter> <parameter required="true" type="xs:string" context="matrix"> <name>destroy</name> <value>the id or name of the host</value> <---- ????? </parameter> <parameter required="false" type="xs:boolean" context="matrix"> <name>async</name> <value>true|false</value> </parameter> </parameters_set> </url> <body/> </request> </link> Version-Release number of selected component (if applicable): ovirt-engine-4.0.0.6-0.1.el7ev.noarch How reproducible: 100% Steps to Reproduce: Have an operational DC 1. Move to maintenance one of the storage domains in the DC 2. send DELETE request to /api/storagedomains/{sd:id} <storage_domain> <host id="{sd:id}"/> <format>false</format> <destroy>true</destroy> </storage_domain> Actual results: Expected results: Additional info: