Skip to content

Commit f7da15f

Browse files
committed
dashboard/app: fix histogram numbers
Some time ago we added the per-manager statistics. Histogram was broken since that moment. Closes #5687.
1 parent 4990027 commit f7da15f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dashboard/app/entities_spanner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ select
4242
cast(sum(covered) as INTEGER) as covered
4343
from merge_history join files
4444
on merge_history.session = files.session
45-
where namespace=$1 and duration>=$2 and duration<=$3
45+
where namespace=$1 and duration>=$2 and duration<=$3 and manager='*'
4646
group by dateto, duration`,
4747
Params: map[string]interface{}{
4848
"p1": ns,

0 commit comments

Comments
 (0)