diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2024-07-08 15:46:38 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2024-07-08 15:58:48 +0200 |
| commit | f874c88ee641881229b74bc5afa8f2490120d91b (patch) | |
| tree | b659e602831cefdea385dd021d45501c1c29c6d2 /largeobject.go | |
| parent | 4fac97b5e944ce70cdca3679f5c2b1eef9b83952 (diff) | |
| download | go-schwift-f874c88ee641881229b74bc5afa8f2490120d91b.tar.gz | |
add ctx argument to Account.Capabilities
Diffstat (limited to 'largeobject.go')
| -rw-r--r-- | largeobject.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/largeobject.go b/largeobject.go index e77779b..2ce63a8 100644 --- a/largeobject.go +++ b/largeobject.go @@ -667,7 +667,7 @@ func (lo *LargeObject) Append(ctx context.Context, contents io.Reader, segmentSi } if segmentSizeBytes == 0 { // apply default value for segmenting size - caps, err := lo.object.c.a.Capabilities() + caps, err := lo.object.c.a.Capabilities(ctx) if err != nil { return err } |
