You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/03/12 21:04:50 UTC

[43/50] [abbrv] git commit: [#5453] Avoid conflict with mongo's built-in stats collection

[#5453] Avoid conflict with mongo's built-in stats collection


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/f03fd188
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/f03fd188
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/f03fd188

Branch: refs/heads/si/5453
Commit: f03fd188e53e83c6fb53f03cbefc4688874568dc
Parents: b5a4028
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Tue Mar 5 21:45:38 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Tue Mar 12 16:29:59 2013 +0000

----------------------------------------------------------------------
 Allura/allura/model/contrib_stats.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/f03fd188/Allura/allura/model/contrib_stats.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/contrib_stats.py b/Allura/allura/model/contrib_stats.py
index 4d9e1e9..adc36db 100644
--- a/Allura/allura/model/contrib_stats.py
+++ b/Allura/allura/model/contrib_stats.py
@@ -16,7 +16,7 @@ from allura.lib import helpers as h
 
 class Stats(MappedClass):
     class __mongometa__:
-        name='stats'
+        name='userstats'
         session = main_orm_session
         unique_indexes = [ '_id']