Skip to content

Commit cd8f1cf

Browse files
committed
remove comment
1 parent 88f399e commit cd8f1cf

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

matching-service/src/services/webSocketService.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,10 @@ class WebSocketService {
117117
this.clients.delete(userId);
118118
// Remove any pending notifications for this user
119119
this.pendingNotifications.delete(userId);
120-
// TODO: Implement logic to remove the user from Redis queues
121120
this.removeUserFromQueues(userId);
122121
}
123122

124123
private async removeUserFromQueues(userId: string) {
125-
// This method should remove the user from all Redis queues
126-
// You'll need to implement this logic based on your Redis structure
127-
// For example:
128124
const allTopics = await redisClient.keys("topic:*");
129125
const allDifficulties = await redisClient.keys("difficulty:*");
130126

0 commit comments

Comments
 (0)