Skip to content

Commit

Permalink
Fix error message for ResumableUpload
Browse files Browse the repository at this point in the history
  • Loading branch information
mdedetrich committed Sep 14, 2024
1 parent 1357200 commit 78fd2c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private[connectors] object ResumableUpload {
else
Unmarshal(response.entity).to[String].flatMap { errorString =>
Future.failed(InvalidResponseException(
ErrorInfo(s"Resumable upload failed with status: ${response.status}", s"body: $errorString")))
ErrorInfo(s"Resumable upload failed with status ${response.status}", errorString)))
}(ExecutionContexts.parasitic)
}.withDefaultRetry

Expand Down

0 comments on commit 78fd2c6

Please sign in to comment.