summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDamien F. Katz <damien@apache.org>2009-05-31 23:45:12 +0000
committerDamien F. Katz <damien@apache.org>2009-05-31 23:45:12 +0000
commit958c8a6c8c0aa03d854a1aef4ad06e0ae6583375 (patch)
tree8ef52ad90b0fce0b75584735773af5d5a8b96e26 /src
parent227ac8db0384d3f4ca5bbd479642807442692c85 (diff)
Removed space from whitespace heartbeat in _changes api
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@780531 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/couchdb/couch_httpd_db.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/couchdb/couch_httpd_db.erl b/src/couchdb/couch_httpd_db.erl
index cf11d4e1..404757af 100644
--- a/src/couchdb/couch_httpd_db.erl
+++ b/src/couchdb/couch_httpd_db.erl
@@ -59,7 +59,7 @@ get_changes_timeout(Req, Resp) ->
{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) ->