Skip to content

Commit

Permalink
AWS: Fix typo in S3OutputFile.createOrOverwrite exception message (ap…
Browse files Browse the repository at this point in the history
  • Loading branch information
kbendick authored Jun 16, 2021
1 parent 5a61211 commit 7be269d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public PositionOutputStream createOrOverwrite() {
try {
return new S3OutputStream(client(), uri(), awsProperties());
} catch (IOException e) {
throw new UncheckedIOException("Filed to create output stream for location: " + uri(), e);
throw new UncheckedIOException("Failed to create output stream for location: " + uri(), e);
}
}

Expand Down

0 comments on commit 7be269d

Please sign in to comment.