You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2013/09/09 11:53:44 UTC

[24/50] [abbrv] git commit: updated refs/heads/1867-feature-plugins to 8aad450

Typo - no such function couch_httpd:send_method_not_allowd/2

Signed-off-by: Peter Lemenkov <le...@gmail.com>


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/b18cdca1
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/b18cdca1
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/b18cdca1

Branch: refs/heads/1867-feature-plugins
Commit: b18cdca1ae18b151ab9590aa011c079bb8a079b5
Parents: 27b9feb
Author: Peter Lemenkov <le...@gmail.com>
Authored: Sat Aug 17 18:57:56 2013 +0400
Committer: Jan Lehnardt <ja...@apache.org>
Committed: Mon Sep 9 11:16:43 2013 +0200

----------------------------------------------------------------------
 src/couch_mrview/src/couch_mrview_http.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/b18cdca1/src/couch_mrview/src/couch_mrview_http.erl
----------------------------------------------------------------------
diff --git a/src/couch_mrview/src/couch_mrview_http.erl b/src/couch_mrview/src/couch_mrview_http.erl
index 6e571f3..b8c4465 100644
--- a/src/couch_mrview/src/couch_mrview_http.erl
+++ b/src/couch_mrview/src/couch_mrview_http.erl
@@ -87,7 +87,7 @@ handle_compact_req(#httpd{method='POST'}=Req, Db, DDoc) ->
     ok = couch_mrview:compact(Db, DDoc),
     couch_httpd:send_json(Req, 202, {[{ok, true}]});
 handle_compact_req(Req, _Db, _DDoc) ->
-    couch_httpd:send_method_not_allowd(Req, "POST").
+    couch_httpd:send_method_not_allowed(Req, "POST").
 
 
 handle_cleanup_req(#httpd{method='POST'}=Req, Db) ->