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 2013/07/11 23:58:43 UTC

[23/50] [abbrv] git commit: Remove timer for deleted method

Remove timer for deleted method

Signed-off-by: Tim Van Steenburgh <tv...@gmail.com>


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

Branch: refs/heads/db/6277
Commit: 3ae3c3666cae7368f30ee017356438b2e7706405
Parents: 1e27f3d
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Sun Jul 7 05:26:40 2013 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Sun Jul 7 05:26:40 2013 +0000

----------------------------------------------------------------------
 Allura/allura/lib/custom_middleware.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/3ae3c366/Allura/allura/lib/custom_middleware.py
----------------------------------------------------------------------
diff --git a/Allura/allura/lib/custom_middleware.py b/Allura/allura/lib/custom_middleware.py
index e156e94..4458c48 100644
--- a/Allura/allura/lib/custom_middleware.py
+++ b/Allura/allura/lib/custom_middleware.py
@@ -241,7 +241,6 @@ class AlluraTimerMiddleware(TimerMiddleware):
     def repo_impl_timers(self):
         timers= []
         from allura.model.repository import Repository, RepositoryImplementation
-        timers.append(Timer('base_tool.{method_name}', Repository, 'commitlog'))
         timers.append(Timer('base_tool.{method_name}', RepositoryImplementation, 'last_commit_ids'))
         with pass_on_exc(ImportError):
             from forgegit.model.git_repo import GitImplementation