Skip to content

Commit

Permalink
review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ersan Bozduman committed Jul 26, 2024
1 parent 72b2b07 commit 136a563
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions Minio/RequestExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,16 +143,7 @@ await requestMessageBuilder.ResponseWriter(responseResult.ContentStream, cancell
{
if (ex.Message.Equals("ThrowBucketNotFoundException", StringComparison.Ordinal))
throw new BucketNotFoundException();

if (responseResult is not null)
{
responseResult.Exception = ex;
throw;
}

responseResult = new ResponseResult(request, ex);

return responseResult;
throw;
}
}

Expand Down

0 comments on commit 136a563

Please sign in to comment.