Task collection improvements (#109)
This commit is contained in:
6
vendor/golang.org/x/crypto/acme/autocert/autocert.go
generated
vendored
6
vendor/golang.org/x/crypto/acme/autocert/autocert.go
generated
vendored
@ -770,9 +770,9 @@ AuthorizeOrderLoop:
|
||||
}
|
||||
// Remove all hanging authorizations to reduce rate limit quotas
|
||||
// after we're done.
|
||||
defer func() {
|
||||
go m.deactivatePendingAuthz(o.AuthzURLs)
|
||||
}()
|
||||
defer func(urls []string) {
|
||||
go m.deactivatePendingAuthz(urls)
|
||||
}(o.AuthzURLs)
|
||||
|
||||
// Check if there's actually anything we need to do.
|
||||
switch o.Status {
|
||||
|
Reference in New Issue
Block a user