-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Storage] Fix #30635: az storage copy
: Update to latest AzCopy download link with version 10.27.1
#30640
base: dev
Are you sure you want to change the base?
Conversation
️✔️AzureCLI-FullTest
|
️✔️AzureCLI-BreakingChangeTest
|
Thank you for your contribution! We will review the pull request and get back to you soon. |
az storage copy
: Update to latest AzCopy download link with version 10.27.1az storage copy
: Update to latest AzCopy download link with version 10.27.1
@@ -56,7 +56,8 @@ 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/releases/release-10.27.1-20241113/' \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is that correct? From my perspective, it should be something like:
https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/release20211027/azcopy_{}_{}_{}.{}
That part release-10.27.1-20241113/
sounds unnecessary, otherwise you should be able to pass the version also as an argument on the build of the URL
That currently way, you kinda make unnecessary the AZCOPY_VERSION
.
Related command
Description
Since the old links have been deprecated https://learn.microsoft.com/en-us/azure/cdn/edgio-retirement-faq
Switching to the latest links from AzCopy guide https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10?tabs=dnf#download-the-azcopy-portable-binary
Fix #30635
Testing Guide
History Notes
[Storage]
az storage copy
: Update to latest AzCopy download link with version 10.27.1This checklist is used to make sure that common guidelines for a pull request are followed.
The PR title and description has followed the guideline in Submitting Pull Requests.
I adhere to the Command Guidelines.
I adhere to the Error Handling Guidelines.