File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -145,11 +145,11 @@ export interface RetryPolicyConfig {
145
145
jitter : string ;
146
146
}
147
147
export interface CircuitBreakerPolicyConfig {
148
- failureThresholdCount : number /* int */ ;
149
- failureThresholdCapacity : number /* int */ ;
148
+ failureThresholdCount : number /* uint */ ;
149
+ failureThresholdCapacity : number /* uint */ ;
150
150
halfOpenAfter : string ;
151
- successThresholdCount : number /* int */ ;
152
- successThresholdCapacity : number /* int */ ;
151
+ successThresholdCount : number /* uint */ ;
152
+ successThresholdCapacity : number /* uint */ ;
153
153
}
154
154
export interface TimeoutPolicyConfig {
155
155
duration : string ;
@@ -167,7 +167,7 @@ export interface RateLimitBudgetConfig {
167
167
}
168
168
export interface RateLimitRuleConfig {
169
169
method : string ;
170
- maxCount : number /* int */ ;
170
+ maxCount : number /* uint */ ;
171
171
period : string ;
172
172
waitTime : string ;
173
173
}
You can’t perform that action at this time.
0 commit comments