Skip to content

Commit

Permalink
chore: remove debug logs that were accidentally committed (#9503)
Browse files Browse the repository at this point in the history
  • Loading branch information
salonig23 authored Jun 12, 2024
1 parent 3857b7a commit e3d01c1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions master/internal/api_trials.go
Original file line number Diff line number Diff line change
Expand Up @@ -1569,8 +1569,6 @@ func (a *apiServer) PostTrialRunnerMetadata(
func (a *apiServer) isTrialTerminalFunc(trialID int, buffer time.Duration) api.TerminationCheckFn {
return func() (bool, error) {
state, endTime, err := a.m.db.TrialStatus(trialID)
log.Print("state, ", state)
log.Print("endTime", endTime)
if err != nil ||
(model.TerminalStates[state] && endTime.Add(buffer).Before(time.Now().UTC())) {
return true, err
Expand Down

0 comments on commit e3d01c1

Please sign in to comment.