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 C446F10942 for ; Thu, 26 Feb 2015 20:31:48 +0000 (UTC) Received: (qmail 40949 invoked by uid 500); 26 Feb 2015 20:31:48 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 40811 invoked by uid 500); 26 Feb 2015 20:31:48 -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 40783 invoked by uid 99); 26 Feb 2015 20:31:48 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Feb 2015 20:31:48 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6D99CE08E9; Thu, 26 Feb 2015 20:31:48 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kxepal@apache.org To: commits@couchdb.apache.org Date: Thu, 26 Feb 2015 20:31:49 -0000 Message-Id: In-Reply-To: <7f1027338d6f4a2fa816d7f226482fab@git.apache.org> References: <7f1027338d6f4a2fa816d7f226482fab@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] chttpd commit: updated refs/heads/master to 7f785ea Rename "shard_db" option to "shards_db" COUCHDB-2628 Project: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/commit/6c4aa04e Tree: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/tree/6c4aa04e Diff: http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/diff/6c4aa04e Branch: refs/heads/master Commit: 6c4aa04e21cc94c4e2d1c9718a52d5fbffb58b73 Parents: 7fef96e Author: Alexander Shorin Authored: Thu Feb 26 21:55:25 2015 +0300 Committer: Alexander Shorin Committed: Thu Feb 26 21:57:10 2015 +0300 ---------------------------------------------------------------------- src/chttpd_misc.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-chttpd/blob/6c4aa04e/src/chttpd_misc.erl ---------------------------------------------------------------------- diff --git a/src/chttpd_misc.erl b/src/chttpd_misc.erl index 5708708..6423a91 100644 --- a/src/chttpd_misc.erl +++ b/src/chttpd_misc.erl @@ -100,7 +100,7 @@ handle_sleep_req(Req) -> handle_all_dbs_req(#httpd{method='GET'}=Req) -> Args = couch_mrview_http:parse_params(Req, undefined), - ShardDbName = config:get("mem3", "shard_db", "_dbs"), + ShardDbName = config:get("mem3", "shards_db", "_dbs"), %% shard_db is not sharded but mem3:shards treats it as an edge case %% so it can be pushed thru fabric {ok, Info} = fabric:get_db_info(ShardDbName),