mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-25 14:40:45 -04:00
deps: update AWS SDK (#2809)
* deps: update AWS SDK * deps: fix AWS SDK upgrade breakage --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Markus Rudy <mr@edgeless.systems>
This commit is contained in:
parent
a8bca88eeb
commit
bacb8ff886
9 changed files with 139 additions and 138 deletions
|
@ -46,7 +46,7 @@ func deleteRecursive(ctx context.Context, path string, client *staticupload.Clie
|
|||
Bucket: aws.String(cfg.bucket),
|
||||
Delete: &s3types.Delete{
|
||||
Objects: objIDs,
|
||||
Quiet: true,
|
||||
Quiet: toPtr(true),
|
||||
},
|
||||
})
|
||||
if err != nil {
|
||||
|
@ -55,3 +55,7 @@ func deleteRecursive(ctx context.Context, path string, client *staticupload.Clie
|
|||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func toPtr[T any](v T) *T {
|
||||
return &v
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue