From 91e26ec437abcd42a8255aa88e31b45da059529e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 16 Jan 2026 09:33:14 +0100 Subject: pkg/aflow: handle model quota errors Detect model quota violations (assumed to be RPD). Make syz-agent not request jobs that use the model until the next quota reset time. Fixes #6573 --- pkg/aflow/verify.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/aflow/verify.go') diff --git a/pkg/aflow/verify.go b/pkg/aflow/verify.go index 5f7d16a09..8486560f8 100644 --- a/pkg/aflow/verify.go +++ b/pkg/aflow/verify.go @@ -13,6 +13,7 @@ import ( type verifyContext struct { actions map[string]bool state map[string]*varState + models map[string]bool err error } -- cgit mrf-deployment