diff options
author | Damien F. Katz <damien@apache.org> | 2009-05-31 23:45:12 +0000 |
---|---|---|
committer | Damien F. Katz <damien@apache.org> | 2009-05-31 23:45:12 +0000 |
commit | 958c8a6c8c0aa03d854a1aef4ad06e0ae6583375 (patch) | |
tree | 8ef52ad90b0fce0b75584735773af5d5a8b96e26 /src/couchdb | |
parent | 227ac8db0384d3f4ca5bbd479642807442692c85 (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/couchdb')
-rw-r--r-- | src/couchdb/couch_httpd_db.erl | 2 |
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) -> |