fix(athena): harden council flow and resilience config

This commit is contained in:
ismeth
2026-02-28 20:26:35 +01:00
committed by YeonGyu-Kim
parent e52ccd1b04
commit ed2bb1ead7
8 changed files with 105 additions and 21 deletions
+1
View File
@@ -25,6 +25,7 @@ export const CouncilConfigSchema = z.object({
retry_failed_if_others_finished: z.boolean().default(false),
cancel_retrying_on_quorum: z.boolean().default(true),
stuck_threshold_seconds: z.number().min(30).default(120),
member_max_running_seconds: z.number().min(60).default(1800),
}).strict()
export type CouncilMemberConfig = z.infer<typeof CouncilMemberSchema>