Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* Fix `ServerWebSocketContainer` can't stop
  • Loading branch information
Sorieee committed Mar 9, 2022
1 parent ba8a26f commit 95e680f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2014-2021 the original author or authors.
* Copyright 2014-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -232,7 +232,7 @@ public synchronized void start() {
@Override
public void stop() {
if (isRunning()) {
((Lifecycle) this.handshakeHandler).start();
((Lifecycle) this.handshakeHandler).stop();
}
}

Expand Down

0 comments on commit 95e680f

Please sign in to comment.