You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by BugRat Mail System <to...@cortexity.com> on 2001/01/25 09:23:43 UTC

BugRat Report #836 has been filed.

Bug report #836 has just been filed.

You can view the report at the following URL:

   <http://znutar.cortexity.com/BugRatViewer/ShowReport/836>

REPORT #836 Details.

Project: Tomcat
Category: Bug Report
SubCategory: New Bug Report
Class: swbug
State: received
Priority: high
Severity: critical
Confidence: public
Environment: 
   Release: 3.2.1
   JVM Release: 1.3.0
   Operating System: Redhat Linux
   OS Release: 7.0
   Platform: Intel

Synopsis: 
destroy() not called after session-timeout?

Description:
public void init(ServletConfig config) throws ServletException {
    super.init(config);
    log("init";
}

public void destroy() {
    log("destroy");
    super.destroy();
}

// "init" appears in log, but not "destroy"