#1181 closed defect (fixed)
Incorrect counter for pilot reports in the activity log
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | major | Milestone: | Reggie v4.23.1 |
Component: | net.sf.basedb.reggie | Keywords: | |
Cc: |
Description
Created 16777214 pilot reports
This is clearly not correct. The entry before it:
Legacy pipeline auto-confirmed for 23 libraries
So the correct number of pilot reports should be 23.
Change History (4)
comment:1 by , 5 years ago
comment:3 by , 5 years ago
Milestone: | Reggie v4.24 → Reggie v4.23.1 |
---|
Note:
See TracTickets
for help on using tickets.
Trying this out by creating pilot reports one by one reveals that the counter is increasing as: 2, 6, 14, 30, 62, ... which seems to have a pattern of
next=(current+1)*2
. Or we can find out the value for N pilot reports by2^(N+1) - 2)
. With N=23 we get 16777214.