Skip to content

Commit

Permalink
Issue #5832 - use lifeCycleStopping as lifeCycleStopped is never called
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
  • Loading branch information
lachlan-roberts committed Dec 23, 2020
1 parent 25f8c65 commit dd1d4bc
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -298,9 +298,9 @@ protected void doClientStart()
AbstractLifeCycleListener shutdownListener = new AbstractLifeCycleListener()
{
@Override
public void lifeCycleStopped(LifeCycle event)
public void lifeCycleStopping(LifeCycle event)
{
LifeCycle.stop(this);
LifeCycle.stop(JavaxWebSocketClientContainer.this);
}
};

Expand Down

0 comments on commit dd1d4bc

Please sign in to comment.