View | Details | Raw Unified | Return to bug 52957
Collapse All | Expand All

(-)java/org/apache/catalina/core/StandardPipeline.java (-1 / +3 lines)
Lines 458-464 Link Here
458
            }
458
            }
459
        }
459
        }
460
        try {
460
        try {
461
            ((Lifecycle) valve).destroy();
461
            if (valve instanceof Lifecycle) {
462
                ((Lifecycle) valve).destroy();
463
            }
462
        } catch (LifecycleException e) {
464
        } catch (LifecycleException e) {
463
            log.error("StandardPipeline.removeValve: destroy: ", e);
465
            log.error("StandardPipeline.removeValve: destroy: ", e);
464
        }
466
        }

Return to bug 52957