diff options
author | Rasmus Dahlberg <rasmus@rgdd.se> | 2025-03-12 18:18:45 +0100 |
---|---|---|
committer | Rasmus Dahlberg <rasmus@rgdd.se> | 2025-03-12 18:18:45 +0100 |
commit | 3785997f03bfe81c3e3dd2c89d39737a093c5a73 (patch) | |
tree | 45feff36f1ad231e050d8b04551fac028016ae4d | |
parent | 435da257fb18f2ae03cae2231ca12a77d50810d2 (diff) |
fix: Update s/Trust Asia/TrustAsia
Description changed in Google's log list. All other log operator names
are still unchanged.
-rw-r--r-- | utils_ct.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils_ct.go b/utils_ct.go index 49e7358..5e6e07b 100644 --- a/utils_ct.go +++ b/utils_ct.go @@ -58,7 +58,7 @@ func maxWorkers(log metadata.Log, workers uint64) int { if max := 2; strings.Contains(*log.Description, "DigiCert") && int(workers) > max { return max } - if max := 2; strings.Contains(*log.Description, "Trust Asia") && int(workers) > max { + if max := 2; strings.Contains(*log.Description, "TrustAsia") && int(workers) > max { return max } return int(workers) |