Updated Branches: refs/heads/1.2.x ac12b4788 -> 0f465bd52
Assert couch application starts successfully Patch by Matt Goodall. Thanks. Closes COUCHDB-1317. Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/0f465bd5 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/0f465bd5 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/0f465bd5 Branch: refs/heads/1.2.x Commit: 0f465bd52b1ee5eba677fdaf0c4459766f1593ed Parents: ac12b47 Author: Filipe David Manana <[email protected]> Authored: Wed Oct 26 09:38:24 2011 +0100 Committer: Filipe David Manana <[email protected]> Committed: Wed Oct 26 09:42:41 2011 +0100 ---------------------------------------------------------------------- src/couchdb/couch.erl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/0f465bd5/src/couchdb/couch.erl ---------------------------------------------------------------------- diff --git a/src/couchdb/couch.erl b/src/couchdb/couch.erl index 956e948..c18df0b 100644 --- a/src/couchdb/couch.erl +++ b/src/couchdb/couch.erl @@ -15,7 +15,7 @@ -compile(export_all). start() -> - application:start(couch). + ok = application:start(couch). stop() -> application:stop(couch).
