From 35c7d2117b5e9c96ce53aa2893910ed18f2b0f66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Brunner?= Date: Fri, 14 Jun 2024 20:45:39 +0200 Subject: [PATCH] Don't set the priority to high on rerun --- github_app_geo_project/views/webhook.py | 1 - 1 file changed, 1 deletion(-) diff --git a/github_app_geo_project/views/webhook.py b/github_app_geo_project/views/webhook.py index 44fc2c6fbfd..d7a31261421 100644 --- a/github_app_geo_project/views/webhook.py +++ b/github_app_geo_project/views/webhook.py @@ -104,7 +104,6 @@ def webhook(request: pyramid.request.Request) -> dict[str, None]: .where(models.Queue.check_run_id == check_run.id) .values( { - "priority": module.PRIORITY_HIGH, "status": models.JobStatus.NEW, "started_at": None, "finished_at": None,