mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-09 17:55:10 -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
|
@ -134,8 +134,8 @@ func (c *Client) DeletePath(ctx context.Context, path string) error {
|
|||
}
|
||||
c.Logger.Debugf("Listing objects in %s", path)
|
||||
objs := []s3types.Object{}
|
||||
out := &s3.ListObjectsV2Output{IsTruncated: true}
|
||||
for out.IsTruncated {
|
||||
out := &s3.ListObjectsV2Output{IsTruncated: ptr(true)}
|
||||
for out.IsTruncated != nil && *out.IsTruncated {
|
||||
var err error
|
||||
out, err = c.s3Client.ListObjectsV2(ctx, listIn)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue