From 286cdb29a8713efa3c8f1ff27665282de5c1d87c Mon Sep 17 00:00:00 2001 From: Michel Van den Bergh Date: Sun, 15 Sep 2024 08:17:45 +0000 Subject: [PATCH] Fix benign schema error. 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. --- server/fishtest/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fishtest/schemas.py b/server/fishtest/schemas.py index 45ed5db4c..9c96ecff0 100644 --- a/server/fishtest/schemas.py +++ b/server/fishtest/schemas.py @@ -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,