You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by fd...@apache.org on 2011/10/26 10:41:09 UTC

git commit: Assert couch application starts successfully

Updated Branches:
  refs/heads/master 0f8c86d93 -> 02e808ae1


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/02e808ae
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/02e808ae
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/02e808ae

Branch: refs/heads/master
Commit: 02e808ae18e42d10152b29b4dfd93932ad0389e7
Parents: 0f8c86d
Author: Filipe David Manana <fd...@apache.org>
Authored: Wed Oct 26 09:38:24 2011 +0100
Committer: Filipe David Manana <fd...@apache.org>
Committed: Wed Oct 26 09:38:24 2011 +0100

----------------------------------------------------------------------
 src/couchdb/couch.erl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/02e808ae/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).