You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// - If b == 0, that means the limiter is unlimited capacity. default use in resource controller (burst with a rate within a unlimited capacity).
3050
+
// - If b < 0, that means the limiter is unlimited capacity and fillrate(r) is ignored, can be seen as r == Inf (burst with a inf rate within a unlimited capacity).
3051
+
// - If b > 0, that means the limiter is limited capacity. (current not used).
3052
+
limit:=int64(0)
3053
+
ifboolValue {
3054
+
limit=-1
3055
+
}
3056
+
resourceGroupSettings.BurstLimit=limit
3047
3057
default:
3048
3058
returnerrors.Trace(errors.New("unknown resource unit type"))
0 commit comments