Add ai_gateway_timeout_seconds column in ai_settings table
What does this MR do and why?
- Add new column
ai_gateway_timeout_secondsinai_settingstable with a default value of 60 seconds. - Update the
duoUpdateSettingsmutation to accept this new field.
References
Add new column in `ai_settings` table (#579182) Bug issue: Make 60s timeout applied by AIGW when making re... (#567878)
Screenshots or screen recordings
|
|---|
How to set up and validate locally
- Add following mutation to GraphQL explorer
mutation updateDuoSettings($input: DuoSettingsUpdateInput!) {
duoSettingsUpdate(input: $input) {
errors
__typename
}
}
# variables:
{
"input":{
"aiGatewayTimeoutSeconds": 30
}
}
MR acceptance checklist
Evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.
Edited by Cindy Halim


