https://issues.apache.org/bugzilla/show_bug.cgi?id=53151
Keiichi Fujino <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX --- Comment #2 from Keiichi Fujino <[email protected]> 2012-04-27 04:20:25 UTC --- Life-cycle implementation was refactored in Tomcat7 . As the result, SimpleTcpCluster in Tomcat7 has inherited LifecycleBase and LifecycleBase notifies a life cycle event. Therefore, the upper code is unnecessary to the SimpleTcpCluster in Tomcat7. However, as the side effects of this refactoring, In Tomcat7.0, instance of SimpleTcpCluster is no longer set to the data field of LifecycleEvent. In Tomcat6, it was set as the second argument. Therefore, if your LifecycleListener used getData() method in order to get instance of SimpleTcpCluster, you must use getLifecycle() method instead of getData() method. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
