Return-Path: Delivered-To: apmail-cocoon-dev-archive@www.apache.org Received: (qmail 89431 invoked from network); 23 Mar 2004 17:43:22 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 23 Mar 2004 17:43:22 -0000 Received: (qmail 24726 invoked by uid 500); 23 Mar 2004 17:43:09 -0000 Delivered-To: apmail-cocoon-dev-archive@cocoon.apache.org Received: (qmail 24705 invoked by uid 500); 23 Mar 2004 17:43:09 -0000 Mailing-List: contact dev-help@cocoon.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@cocoon.apache.org Delivered-To: mailing list dev@cocoon.apache.org Received: (qmail 24691 invoked from network); 23 Mar 2004 17:43:09 -0000 Received: from unknown (HELO exchange.sun.com) (192.18.33.10) by daedalus.apache.org with SMTP; 23 Mar 2004 17:43:09 -0000 Received: (qmail 15757 invoked by uid 50); 23 Mar 2004 17:43:49 -0000 Date: 23 Mar 2004 17:43:49 -0000 Message-ID: <20040323174349.15756.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: dev@cocoon.apache.org Cc: Subject: DO NOT REPLY [Bug 27875] New: - Profiling data not saved with internal pipelines X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=27875 Profiling data not saved with internal pipelines Summary: Profiling data not saved with internal pipelines Product: Cocoon 2 Version: 2.1.4 Platform: PC OS/Version: All Status: NEW Severity: Minor Priority: Other Component: blocks AssignedTo: dev@cocoon.apache.org ReportedBy: fechner@werum.com When processing an internal pipeline, the 'processXMLPipeline' or 'processReader' methods of the AbstractProcessingPipeline are invoked instead of the 'process' method. These methods are not oberwritten by the Profiling...Pipeline classes and therefore no profiling data will be saved. The fix is straightforward: Copy the 'process' method, rename it and replace the calls to super.process with super.processXMLPipeline resp. super.processReader. I've done it within my testing environment and it works fine.