Skip to content

Commit

Permalink
Rename in preparation for adding server session expiration test
Browse files Browse the repository at this point in the history
  • Loading branch information
markt-asf committed Feb 13, 2024
1 parent 0052b37 commit f93d11b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* significantly extends the length of a test run when using multiple test
* threads.
*/
public class TestWsWebSocketContainerSessionExpiryContainer extends WsWebSocketContainerBaseTest {
public class TestWsWebSocketContainerSessionExpiryContainerClient extends WsWebSocketContainerBaseTest {

@Test
public void testSessionExpiryContainer() throws Exception {
Expand Down Expand Up @@ -67,9 +67,9 @@ public void testSessionExpiryContainer() throws Exception {

int count = 0;
boolean isOpen = true;
while (isOpen && count < 8) {
while (isOpen && count < 100) {
count++;
Thread.sleep(1000);
Thread.sleep(100);
isOpen = false;
for (Session session : setA) {
if (session.isOpen()) {
Expand Down

0 comments on commit f93d11b

Please sign in to comment.