You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2014/02/13 00:00:43 UTC

chttpd commit: updated refs/heads/1993-bigcouch-couch-mrview to 05f446c

Updated Branches:
  refs/heads/1993-bigcouch-couch-mrview b2344bce4 -> 05f446c04


Remove extraneous print statement


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

Branch: refs/heads/1993-bigcouch-couch-mrview
Commit: 05f446c0401412cd25610d3d5246bcc669f66dac
Parents: b2344bc
Author: Russell Branca <ch...@gmail.com>
Authored: Wed Feb 12 15:00:52 2014 -0800
Committer: Russell Branca <ch...@gmail.com>
Committed: Wed Feb 12 15:00:52 2014 -0800

----------------------------------------------------------------------
 src/chttpd_db.erl | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/05f446c0/src/chttpd_db.erl
----------------------------------------------------------------------
diff --git a/src/chttpd_db.erl b/src/chttpd_db.erl
index e3a2ce7..17299d6 100644
--- a/src/chttpd_db.erl
+++ b/src/chttpd_db.erl
@@ -485,7 +485,6 @@ all_docs_view(Req, Db, Keys) ->
     Args = Args0#mrargs{preflight_fun=ETagFun},
     {ok, Resp} = couch_httpd:etag_maybe(Req, fun() ->
         VAcc0 = #vacc{db=Db, req=Req},
-        io:format("TRIGGERING ALL DOCS REQ WITH COUCH_MRVIEW_HTTP:VIEW_CB~n", []),
         fabric:all_docs(Db, fun couch_mrview_http:view_cb/2, VAcc0, Args)
     end),
     case is_record(Resp, vacc) of