Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
recap committed Aug 12, 2024
1 parent 36a3479 commit 1953ec5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions schedulers/gat-scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,16 @@ class GatScheduler {
this.queue = new Queue(this.experimentName)
this.currentIndex = -1
this.useRoundRobin = true
console.log(`Loaded GAT scheduler params: min ${this.min}`)
// console.log(`Loaded GAT scheduler params: min ${this.min}`)
}

/*
* @type user {User}
*/
async queueUser(user) {
// await this.queue.wait()
// Queue user object which allows schedulers to decide on additional parameters
// passed on in token like age and gender.
//console.log(`GAT queued user: ${user.userId} params ${JSON.stringify(user.tokenParams)}`)
// await this.queue.wait()
this.queue.push(user)
// this.queue.unlock()
}
Expand Down

0 comments on commit 1953ec5

Please sign in to comment.