Adjust the OperationTracker regular expression to include the new perform() method
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/d6399590 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/d6399590 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/d6399590 Branch: refs/heads/master Commit: d639959010608e589777458d1dc74c7ba44162f5 Parents: 12b2c6a Author: Howard M. Lewis Ship <[email protected]> Authored: Mon Jan 14 09:04:47 2013 -0800 Committer: Howard M. Lewis Ship <[email protected]> Committed: Mon Jan 14 09:04:47 2013 -0800 ---------------------------------------------------------------------- .../apache/tapestry5/services/TapestryModule.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/d6399590/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java b/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java index fa11481..a5b720f 100644 --- a/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java +++ b/tapestry-core/src/main/java/org/apache/tapestry5/services/TapestryModule.java @@ -2471,7 +2471,7 @@ public final class TapestryModule configuration.add("Synthetic", new SyntheticStackTraceElementAnalyzer()); configuration.add("SunReflect", new PrefixCheckStackTraceElementAnalyzer( StackTraceElementClassConstants.OMITTED, "sun.reflect.")); - configuration.add("OperationTracker", new RegexpStackTraceElementAnalyzer(Pattern.compile("internal\\.(RegistryImpl|PerThreadOperationTracker|OperationTrackerImpl).*(run|invoke)\\("), StackTraceElementClassConstants.OMITTED)); + configuration.add("OperationTracker", new RegexpStackTraceElementAnalyzer(Pattern.compile("internal\\.(RegistryImpl|PerThreadOperationTracker|OperationTrackerImpl).*(run|invoke|perform)\\("), StackTraceElementClassConstants.OMITTED)); configuration.add("Access", new RegexpStackTraceElementAnalyzer(Pattern.compile("\\.access\\$\\d+\\("), StackTraceElementClassConstants.OMITTED)); configuration.addInstance("Application", ApplicationStackTraceElementAnalyzer.class);
