Index: tokenserver/appengine/impl/certconfig/warmup.go |
diff --git a/tokenserver/appengine/impl/certconfig/warmup.go b/tokenserver/appengine/impl/certconfig/warmup.go |
index 5c89fa3db805bf0924f6bb71588e85f508abc467..eed68dedce04b93cf784082ef1915dc017e151bd 100644 |
--- a/tokenserver/appengine/impl/certconfig/warmup.go |
+++ b/tokenserver/appengine/impl/certconfig/warmup.go |
@@ -12,7 +12,9 @@ import ( |
func init() { |
warmup.Register("tokenserver/appengine/impl/certconfig", func(c context.Context) error { |
- // TODO |
+ // Warmup ID -> CN mapping. Ignore result (it may be "no such CA"), this is |
+ // fine, the mapping will be preloaded. |
+ GetCAByUniqueID(c, 0) |
return nil |
}) |
} |