Skip to content

Commit

Permalink
dashboard/app: set coverage batching timeout to 8 hours
Browse files Browse the repository at this point in the history
Sometimes 6 hours are not enough to make the quarter long aggregation.
Typically 5 hours 30 minutes are enough.
  • Loading branch information
tarasmadan committed Oct 2, 2024
1 parent 83a2f15 commit ca8b36e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dashboard/app/coverage_batch.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func initCoverageBatches() {

const (
daysToMerge = 7
batchTimeoutSeconds = 60 * 60 * 6
batchTimeoutSeconds = 60 * 60 * 8
)

func handleBatchCoverage(w http.ResponseWriter, r *http.Request) {
Expand Down

0 comments on commit ca8b36e

Please sign in to comment.