Skip to content

Commit

Permalink
s3: fix infinite recursion (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jun 26, 2023
1 parent f559acf commit cbc4f9d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -51,7 +51,7 @@ object S3 {
* @return a raw HTTP response from S3
*/
def request(bucket: String, key: String, method: HttpMethod, s3Headers: S3Headers): Source[HttpResponse, NotUsed] =
request(bucket, key, method, s3Headers)
request(bucket, key, Optional.empty(), method, s3Headers)

/**
* Use this for a low level access to S3.
Expand Down

0 comments on commit cbc4f9d

Please sign in to comment.