You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2009/06/01 01:45:13 UTC

svn commit: r780531 - /couchdb/trunk/src/couchdb/couch_httpd_db.erl

Author: damien
Date: Sun May 31 23:45:12 2009
New Revision: 780531

URL: http://svn.apache.org/viewvc?rev=780531&view=rev
Log:
Removed space from whitespace heartbeat in _changes api

Modified:
    couchdb/trunk/src/couchdb/couch_httpd_db.erl

Modified: couchdb/trunk/src/couchdb/couch_httpd_db.erl
URL: http://svn.apache.org/viewvc/couchdb/trunk/src/couchdb/couch_httpd_db.erl?rev=780531&r1=780530&r2=780531&view=diff
==============================================================================
--- couchdb/trunk/src/couchdb/couch_httpd_db.erl (original)
+++ couchdb/trunk/src/couchdb/couch_httpd_db.erl Sun May 31 23:45:12 2009
@@ -59,7 +59,7 @@
         {DefaultTimeout, fun() -> send_chunk(Resp, "\n"), ok end};
     TimeoutList ->
         {lists:min([DefaultTimeout, list_to_integer(TimeoutList)]),
-            fun() -> send_chunk(Resp, " \n"), ok end}
+            fun() -> send_chunk(Resp, "\n"), ok end}
     end.
 
 handle_changes_req(#httpd{method='GET',path_parts=[DbName|_]}=Req, Db) ->