File tree 2 files changed +3
-3
lines changed
Microsoft.WindowsAzure.Storage/src
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -597,11 +597,11 @@ namespace azure { namespace storage {
597
597
598
598
if (modified_options.use_transactional_md5 () && !modified_options.disable_content_md5_validation () && download_info->m_response_md5 .empty ())
599
599
{
600
- throw storage_exception (protocol::error_missing_md5);
600
+ throw storage_exception (protocol::error_missing_md5, false );
601
601
}
602
602
if (!modified_options.use_transactional_md5 () && modified_options.use_transactional_crc64 () && !modified_options.disable_content_crc64_validation () && download_info->m_response_crc64 .empty ())
603
603
{
604
- throw storage_exception (protocol::error_missing_crc64);
604
+ throw storage_exception (protocol::error_missing_crc64, false );
605
605
}
606
606
607
607
// Lock to the current storage location when resuming a failed download. This is locked
Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ namespace azure { namespace storage {
544
544
// Consider the file has no MD5 hash in default.
545
545
&& offset < std::numeric_limits<utility::size64_t >::max ())
546
546
{
547
- throw storage_exception (protocol::error_missing_md5);
547
+ throw storage_exception (protocol::error_missing_md5, false );
548
548
}
549
549
550
550
// Lock to the current storage location when resuming a failed download. This is locked
You can’t perform that action at this time.
0 commit comments