Skip to content

Commit

Permalink
Merge pull request #1337 from gtroitsk/bug/websockets
Browse files Browse the repository at this point in the history
Remove todos from WebSockets modules
  • Loading branch information
michalvavrik authored Aug 1, 2023
2 parents 5cc2206 + 9d88dbc commit baffa67
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public class Pusher {
@OnOpen
public void onOpen(Session session) {
this.session = session;
//todo messages are not sent on opening of session. Need to investigate and create reproducer
}

@OnMessage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ public void open(Session session) {

@OnMessage
void message(String msg) {
// TODO sometimes sessions are reopened several times without closing, need to check, if this is right
if (!msg.endsWith("joined")) {
messages.add(msg);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ public class Pusher {
@OnOpen
public void onOpen(Session session) {
this.session = session;
//todo messages are not sent on opening of session. Need to investigate and create reproducer
}

@OnMessage
Expand Down

0 comments on commit baffa67

Please sign in to comment.