Skip to content

Commit e2f6622

Browse files
committed
[storage] copy blob wiht track2 SDK
1 parent 2dc4730 commit e2f6622

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/Storage/Storage.Management/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
- `New-AzStorageAccountSASToken`
2828
- `New-AzStorageContainerSASToken`
2929
- `New-AzStorageBlobSASToken`
30+
* Supported asynchronous blob copy run on new API version
31+
- `Start-AzStorageBlobCopy`
3032

3133
## Version 4.3.0
3234
* Supported download blob from managed disk account with Sas Uri and bearer token

src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -300,11 +300,7 @@ public Hashtable Tag
300300

301301
protected override bool UseTrack2Sdk()
302302
{
303-
if (this.BlobTag != null || this.TagCondition != null || this.DestTagCondition != null)
304-
{
305-
return true;
306-
}
307-
return base.UseTrack2Sdk();
303+
return true;
308304
}
309305

310306
private bool skipSourceChannelInit;

0 commit comments

Comments
 (0)