Open
Description
Version
5.4.0
Question
/$/status
, which is an alias return 404 since 5.3.
I haven't checked when POST /$/sleep
last worked.
I guess this may be a side-effect of the admin-mod refactoring?
Can update the docs in https://jena.apache.org/documentation/fuseki2/fuseki-server-protocol.html if the updates are intentional, or should just stay removed.
curl localhost:3030/$/status
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>Error 404 Not Found</title>
</head>
<body>
<h2>HTTP ERROR 404 Not Found</h2>
<table>
<tr><th>URI:</th><td>http://localhost:3030/$/status</td></tr>
<tr><th>STATUS:</th><td>404</td></tr>
<tr><th>MESSAGE:</th><td>Not Found</td></tr>
</table>
</body>
</html>
curl -XPOST localhost:3030/$/sleep
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<title>Error 405 HTTP method POST is not supported by this URL</title>
</head>
<body>
<h2>HTTP ERROR 405 HTTP method POST is not supported by this URL</h2>
<table>
```