Skip to content

Commit

Permalink
Fix benign schema error.
Browse files Browse the repository at this point in the history
See

https://tests.stockfishchess.org/actions?max_actions=1&action=log_message&user=&text=&before=1725836603.523324&run_id=

Probably, in a future PR, we will delegate the purging of the
"active_runs" data structure to a scheduled task so that there is
no more need for the "purge_count" field.
  • Loading branch information
vdbergh committed Sep 15, 2024
1 parent 12981ff commit 286cdb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/fishtest/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ def flags_must_match(run):
}

active_runs_schema = {
"purge_count?": suint,
"purge_count?": uint,
run_id: {
"time": timestamp,
"lock": threading.RLock,
Expand Down

0 comments on commit 286cdb2

Please sign in to comment.