@@ -64,6 +64,7 @@ var Default = Schema{
6464 VaultForceEmptyOCRRounds : Bool (false ),
6565 VaultOptimizationsEnabled : Bool (false ),
6666 VaultSignedResponseRequestIDEnabled : Bool (false ),
67+ VaultPendingQueueStuckRoundThreshold : Int (0 ),
6768 GatewayHTTPGlobalRate : Rate (rate .Limit (500 ), 500 ),
6869 GatewayHTTPPerNodeRate : Rate (rate .Limit (100 ), 100 ),
6970 GatewayConfidentialRelayGlobalRate : Rate (rate .Limit (50 ), 10 ),
@@ -229,12 +230,12 @@ var Default = Schema{
229230 CallLimit : Int (20 ),
230231 },
231232 HTTPAction : httpAction {
232- CallLimit : Int (5 ),
233- CacheAgeLimit : Duration (10 * time .Minute ),
234- ConnectionTimeout : Duration (10 * time .Second ),
235- RequestSizeLimit : Size (10 * config .KByte ),
236- ResponseSizeLimit : Size (100 * config .KByte ),
237- GatewayProxyDonID : String ("" ),
233+ CallLimit : Int (5 ),
234+ CacheAgeLimit : Duration (10 * time .Minute ),
235+ ConnectionTimeout : Duration (10 * time .Second ),
236+ RequestSizeLimit : Size (10 * config .KByte ),
237+ ResponseSizeLimit : Size (100 * config .KByte ),
238+ GatewayProxyDonID : String ("" ),
238239 },
239240 ConfidentialHTTP : confidentialHTTP {
240241 CallLimit : Int (5 ),
@@ -271,6 +272,7 @@ type Schema struct {
271272 VaultForceEmptyOCRRounds Setting [bool ]
272273 VaultOptimizationsEnabled Setting [bool ]
273274 VaultSignedResponseRequestIDEnabled Setting [bool ]
275+ VaultPendingQueueStuckRoundThreshold Setting [int ] `unit:"{round}"`
274276 GatewayHTTPGlobalRate Setting [config.Rate ]
275277 GatewayHTTPPerNodeRate Setting [config.Rate ]
276278 GatewayConfidentialRelayGlobalRate Setting [config.Rate ]
@@ -413,12 +415,12 @@ type chainRead struct {
413415 PayloadSizeLimit Setting [config.Size ]
414416}
415417type httpAction struct {
416- CallLimit Setting [int ] `unit:"{call}"`
417- CacheAgeLimit Setting [time.Duration ]
418- ConnectionTimeout Setting [time.Duration ]
419- RequestSizeLimit Setting [config.Size ]
420- ResponseSizeLimit Setting [config.Size ]
421- GatewayProxyDonID Setting [string ]
418+ CallLimit Setting [int ] `unit:"{call}"`
419+ CacheAgeLimit Setting [time.Duration ]
420+ ConnectionTimeout Setting [time.Duration ]
421+ RequestSizeLimit Setting [config.Size ]
422+ ResponseSizeLimit Setting [config.Size ]
423+ GatewayProxyDonID Setting [string ]
422424}
423425type perOrgHTTPAction struct {
424426 MtlsRateLimit Setting [config.Rate ]
0 commit comments