Skip to content

Commit c7422f3

Browse files
committed
Remove TODOs from storage/aws/issuers
1 parent 15b46e9 commit c7422f3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

storage/aws/issuers.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ type IssuersStorage struct {
4141
//
4242
// The specified bucket must exist or an error will be returned.
4343
func NewIssuerStorage(ctx context.Context, bucket string, prefix string, contentType string) (*IssuersStorage, error) {
44-
// TODO(phboneff): this should probably move somewhere else
45-
// TODO(phboneff): withjsonreads?
4644
sdkConfig, err := config.LoadDefaultConfig(ctx)
4745
if err != nil {
4846
return nil, fmt.Errorf("failed to load default AWS configuration: %v", err)
@@ -67,7 +65,6 @@ func (s *IssuersStorage) keyToObjName(key []byte) string {
6765
func (s *IssuersStorage) AddIssuersIfNotExist(ctx context.Context, kv []storage.KV) error {
6866
// We first try and see if this issuer cert has already been stored since reads
6967
// are cheaper than writes.
70-
// TODO(phboneff): add parallel operations
7168
for _, kv := range kv {
7269
objName := s.keyToObjName(kv.K)
7370
put := &s3.PutObjectInput{

0 commit comments

Comments
 (0)