Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5ADDB7DCC for ; Wed, 26 Oct 2011 08:44:29 +0000 (UTC) Received: (qmail 81459 invoked by uid 500); 26 Oct 2011 08:44:28 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 81418 invoked by uid 500); 26 Oct 2011 08:44:28 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 81411 invoked by uid 99); 26 Oct 2011 08:44:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Oct 2011 08:44:28 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.114] (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Oct 2011 08:44:25 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id EE4DD54411; Wed, 26 Oct 2011 08:42:05 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: fdmanana@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: git commit: Assert couch application starts successfully Message-Id: <20111026084205.EE4DD54411@tyr.zones.apache.org> Date: Wed, 26 Oct 2011 08:42:05 +0000 (UTC) X-Virus-Checked: Checked by ClamAV on apache.org 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 Authored: Wed Oct 26 09:38:24 2011 +0100 Committer: Filipe David Manana 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).