Skip to content

Commit

Permalink
fix: remove random console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-737 committed Nov 14, 2024
1 parent 5db0295 commit bea127b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/ConnectedListUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const cacheHubConnection = async (connection: connectedList) => {
};

export const removeFromHubConnections = async (connId: string, hubId: string) => {
await getRedis().hdel(`${RedisKeys.hubConnections}:${hubId}`, connId).then(console.log);
await getRedis().hdel(`${RedisKeys.hubConnections}:${hubId}`, connId);
};

const purgeConnectionCache = async (channelId: string) => {
Expand Down

0 comments on commit bea127b

Please sign in to comment.