Page MenuHomePhabricator

SecurePoll display discrepancy in number of voters
Open, Needs TriagePublic

Description

Odd issue: SecurePoll shows the number of votes as 3,104 on votewiki but the actual number of current votes is 3,097.

wikiadmin2023@10.64.132.14(votewiki)> SELECT COUNT(*) FROM securepoll_votes WHERE vote_current = 1 AND vote_struck = 0 AND vote_election = 1414;
+----------+
| COUNT(*) |
+----------+
|     3097 |
+----------+
1 row in set (0.017 sec)
wikiadmin2023@10.64.132.14(votewiki)> SELECT COUNT(*) FROM securepoll_votes WHERE vote_current = 1 AND vote_election = 1414;
+----------+
| COUNT(*) |
+----------+
|     3104 |
+----------+
1 row in set (0.009 sec)