You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/11/12 21:26:13 UTC

allura git commit: [#8015] update activitystream session name to match its change

Repository: allura
Updated Branches:
  refs/heads/db/8015 3c3d3ed51 -> 8dba45f61


[#8015] update activitystream session name to match its change


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

Branch: refs/heads/db/8015
Commit: 8dba45f61295ea3bf3c7c18a06230f50d4f5eae3
Parents: 3c3d3ed
Author: Dave Brondsema <da...@brondsema.net>
Authored: Thu Nov 12 15:26:08 2015 -0500
Committer: Dave Brondsema <da...@brondsema.net>
Committed: Thu Nov 12 15:26:08 2015 -0500

----------------------------------------------------------------------
 Allura/allura/command/show_models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/8dba45f6/Allura/allura/command/show_models.py
----------------------------------------------------------------------
diff --git a/Allura/allura/command/show_models.py b/Allura/allura/command/show_models.py
index d651383..917f516 100644
--- a/Allura/allura/command/show_models.py
+++ b/Allura/allura/command/show_models.py
@@ -211,8 +211,8 @@ class EnsureIndexCommand(base.Command):
         main_session_classes = [M.main_orm_session, M.repository_orm_session,
                                 M.task_orm_session]
         if asbool(self.config.get('activitystream.recording.enabled', False)):
-            from activitystream.storage.mingstorage import activity_orm_session
-            main_session_classes.append(activity_orm_session)
+            from activitystream.storage.mingstorage import activity_odm_session
+            main_session_classes.append(activity_odm_session)
         self.basic_setup()
         # by db, then collection name
         main_indexes = defaultdict(lambda: defaultdict(list))