本文整理汇总了Golang中github.com/letsencrypt/boulder/cmd.RateLimitPolicy.Enabled方法的典型用法代码示例。如果您正苦于以下问题:Golang RateLimitPolicy.Enabled方法的具体用法?Golang RateLimitPolicy.Enabled怎么用?Golang RateLimitPolicy.Enabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/letsencrypt/boulder/cmd.RateLimitPolicy
的用法示例。
在下文中一共展示了RateLimitPolicy.Enabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: checkPendingAuthorizationLimit
func checkPendingAuthorizationLimit(sa core.StorageGetter, limit *cmd.RateLimitPolicy, regID int64) error {
if limit.Enabled() {
count, err := sa.CountPendingAuthorizations(regID)
if err != nil {
return err
}
// Most rate limits have a key for overrides, but there is no meaningful key
// here.
noKey := ""
if count > limit.GetThreshold(noKey, regID) {
return core.RateLimitedError("Too many currently pending authorizations.")
}
}
return nil
}