-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Fixed DownloadPackageV0 task to be able to download AFD enabled packages #11897
Conversation
options.host && | ||
options.host.endsWith("blob.core.windows.net") && | ||
options.path && | ||
options.path.includes("&sig=") |
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.
why are we removing this check?
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.
I used the updated library for this task that uses Regex to match the urls. The regex using just the hostname works as well, and its too complicated with additional options.
@@ -10,7 +10,7 @@ | |||
"version": { | |||
"Major": 0, | |||
"Minor": 161, | |||
"Patch": 0 |
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.
I though you already made this 161.2? shouldn't this be more than that?
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.
This is DownloadPackageV0. The 161.2 was for DownloadPackageV1
No description provided.