Skip to content

Commit

Permalink
Use sync copy
Browse files Browse the repository at this point in the history
  • Loading branch information
Oren Novotny committed Aug 10, 2019
1 parent 4fe3482 commit 6fc338e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/SignClient/SignCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,8 @@ CommandOption descriptionUrl

using (var fs = output.OpenWrite())
{
await str.CopyToAsync(fs);
// Use sync stream copy to workaround issue with large files and https streams
str.CopyTo(fs);
}
}
catch (AuthenticationException e)
Expand Down

0 comments on commit 6fc338e

Please sign in to comment.