Skip to content

Commit

Permalink
Added missing method
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbdias committed Sep 11, 2023
1 parent a9a80aa commit 29ce35c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions server/executor/default_poller_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,3 +234,7 @@ func (pe DefaultPollerExecutor) donePollingTraces(job *Job, traceDB tracedb.Trac

return false, fmt.Sprintf("New spans found. Before: %d After: %d", len(job.Run.Trace.Flat), len(trace.Flat))
}

func isFirstRequest(job *Job) bool {
return !job.Headers.GetBool("requeued")
}

0 comments on commit 29ce35c

Please sign in to comment.