HADOOP-2504 REST servlet method for deleting a scanner was not properly

mapped


git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/trunk/src/contrib/hbase@608743 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-01-04 04:39:02 +00:00
parent c89219b47b
commit 13239f413e
2 changed files with 3 additions and 1 deletions

View File

@ -99,6 +99,8 @@ Trunk (unreleased changes)
HADOOP-2503 REST Insert / Select encoding issue
(Bryan Duxbury via Stack)
HADOOP-2505 formatter classes missing apache license
HADOOP-2504 REST servlet method for deleting a scanner was not properly
mapped (Bryan Duxbury via Stack)
IMPROVEMENTS
HADOOP-2401 Add convenience put method that takes writable

View File

@ -129,7 +129,7 @@ public class ScannerHandler extends GenericHandler {
public void doDelete(HttpServletRequest request, HttpServletResponse response,
String[] pathSegments)
throws ServletException, IOException {
doMethodNotAllowed(response, "Not hooked back up yet!");
deleteScanner(response, pathSegments[2]);
}
/*