Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
slaveeks committed Jan 21, 2025
1 parent 6665888 commit ba0f4c9
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions workers/grouper/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,9 +330,6 @@ export default class GrouperWorker extends Worker {
* Check if daily repetition exists for the user, if so, don't increment affected users
*/
const repetitionDailyCacheKey = `repetitions:${task.projectId}:${existedEvent.groupHash}:${eventUser.id}:${eventMidnight}`;
if (task.event.user?.id === 'customer1' || task.event.user?.id === 'customer2') {
console.log(repetitionDailyCacheKey);
}
const repetitionDaily = await this.cache.get(repetitionDailyCacheKey, async () => {
return this.db.getConnection().collection(`repetitions:${task.projectId}`)
.findOne({
Expand Down

0 comments on commit ba0f4c9

Please sign in to comment.