We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cd7376 commit a41ecdeCopy full SHA for a41ecde
CHANGELOG.md
@@ -3,6 +3,12 @@
3
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
4
and this project uses the `YYYY.N` version format.
5
6
+## 2025.16 - 2025-11-21
7
+
8
+### Fixed
9
10
+- Problem scanning would sometimes cause deadlock of the database.
11
12
## 2025.25 - 2025-11-19
13
14
### Added
bullet/problems/logic/results.py
@@ -107,6 +107,8 @@ def _set_solved_problems(rr: ResultRow):
107
.values_list("id", flat=True)
108
)
109
110
+ # These two queries are separated in order to prevent
111
+ # locking the Problem table.
112
problems = SolvedProblem.objects.filter(id__in=problems).values_list(
113
"problem__number", flat=True
114
0 commit comments