You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Anisha Narang (Jira)" <ji...@apache.org> on 2020/01/08 19:28:00 UTC

[jira] [Created] (SLING-8974) Shows a 200 OK for a delete operation even if the node does not exist.

Anisha Narang created SLING-8974:
------------------------------------

             Summary: Shows a 200 OK for a delete operation even if the node does not exist.
                 Key: SLING-8974
                 URL: https://issues.apache.org/jira/browse/SLING-8974
             Project: Sling
          Issue Type: Bug
          Components: Sling Query
            Reporter: Anisha Narang


When you try any curl query for a 'delete' operation, it shows a 200 OK even even the node does not exist.

curl query:
{code:java}
$ curl -F":operation=delete" http://slinghosturl.com/content/invalid_node

<html>
<head>
    <title>Content modified /content/invalid_node</title>
</head>
    <body>
    <h1>Content modified /content/invalid_node</h1>
    <table>
        <tbody>
            <tr>
                <td>Status</td>
                <td><div id="Status">200</div></td>
            </tr>
            <tr>
                <td>Message</td>
                <td><div id="Message">OK</div></td>
            </tr>
            <tr>
                <td>Location</td>
                <td><a href="/invalid_node" id="Location">/invalid_node</a></td>
            </tr>
            <tr>
                <td>Parent Location</td>
                <td><a href="/content" id="ParentLocation">/content</a></td>
            </tr>
            <tr>
                <td>Path</td>
                <td><div id="Path">/content/invalid_node</div></td>
            </tr>
            <tr>
                <td>Referer</td>
                <td><div id="Referer"></div></td>
            </tr>
            <tr>
                <td>ChangeLog</td>
                <td><div id="ChangeLog">&lt;pre&gt;deleted(&quot;/content/invalid_node&quot;);&lt;br/&gt;&lt;/pre&gt;</div></td>
            </tr>
        </tbody>
    </table>
    <p><a href="/invalid_node">Modified Resource</a></p>
    <p><a href="/content">Parent of Modified Resource</a></p>
    </body>
{code}
So, even though this node does not exist, there is a 200 OK response for the same which is not expected as per the documentation here -> [https://sling.apache.org/documentation/bundles/manipulating-content-the-slingpostservlet-servlets-post.html#content-removal]

Expected result:

The response should be 404 not found if the not does not exist.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)