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 DFED217AAB for ; Wed, 18 Feb 2015 15:45:00 +0000 (UTC) Received: (qmail 2656 invoked by uid 500); 18 Feb 2015 15:45:00 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 2608 invoked by uid 500); 18 Feb 2015 15:45:00 -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 2599 invoked by uid 99); 18 Feb 2015 15:45:00 -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; Wed, 18 Feb 2015 15:45:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8215CE03E8; Wed, 18 Feb 2015 15:45:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: benkeen@apache.org To: commits@couchdb.apache.org Message-Id: <82117e3eb3d140ff877b4f348446bc84@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: fauxton commit: updated refs/heads/master to 133eda4 Date: Wed, 18 Feb 2015 15:45:00 +0000 (UTC) Repository: couchdb-fauxton Updated Branches: refs/heads/master 4a9334c76 -> 133eda4a2 Fix for DB page not updating after new db added Note: there's no new test for this because a test already existed to confirm exactly this, except it would have failed on IE if we could run it there. Closes COUCHDB-2580 Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/133eda4a Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/133eda4a Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/133eda4a Branch: refs/heads/master Commit: 133eda4a2aa4b835bd1f66dc7215ddbce12e1f18 Parents: 4a9334c Author: Ben Keen Authored: Fri Feb 13 13:49:13 2015 -0800 Committer: Ben Keen Committed: Wed Feb 18 07:44:45 2015 -0800 ---------------------------------------------------------------------- app/addons/databases/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/133eda4a/app/addons/databases/routes.js ---------------------------------------------------------------------- diff --git a/app/addons/databases/routes.js b/app/addons/databases/routes.js index 0ad0975..143b89c 100644 --- a/app/addons/databases/routes.js +++ b/app/addons/databases/routes.js @@ -82,7 +82,7 @@ function (app, FauxtonAPI, Databases, Views, Components) { }, establish: function() { - return [this.databases.fetchOnce()]; + return [this.databases.fetch({ cache: false })]; } });