Skip to content

Commit 62d1f6f

Browse files
committed
chore: return headers on abort_multipart_upload
1 parent bec01ce commit 62d1f6f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/cloud_cache/adapters

lib/cloud_cache/adapters/s3.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,8 +939,8 @@ defmodule CloudCache.Adapters.S3 do
939939
|> S3.abort_multipart_upload(object, upload_id)
940940
|> perform(opts)
941941
|> then(fn
942-
{:ok, _} = result ->
943-
result
942+
{:ok, %{headers: headers}} ->
943+
{:ok, headers}
944944

945945
{:error, reason} ->
946946
{:error,

0 commit comments

Comments
 (0)