Skip to content

Commit

Permalink
{Storage} Fix #30635: az storage copy: Use Azure FrontDoor instead …
Browse files Browse the repository at this point in the history
…of Edgio endpoint for the installation link which has been deprecated (#30640)

* update to latest azcopy download link with version 10.27.1

* latest version of azcopy has some memory leak issue, pin back to 10.13.0, if user requires a newer version, can follow the guide here https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10?tabs=dnf#download-the-azcopy-portable-binary
  • Loading branch information
calvinhzy authored Jan 13, 2025
1 parent 3656744 commit 5200bd5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ def install_azcopy(self, install_location):
install_dir = os.path.dirname(install_location)
if not os.path.exists(install_dir):
os.makedirs(install_dir)
base_url = 'https://azcopyvnext.azureedge.net/release20211027/azcopy_{}_{}_{}.{}'

base_url = 'https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/release20211027/azcopy_{}_{}_{}.{}'
if self.system == 'Windows':
if platform.machine().endswith('64'):
file_url = base_url.format('windows', 'amd64', AZCOPY_VERSION, 'zip')
Expand Down

0 comments on commit 5200bd5

Please sign in to comment.