Skip to content

Commit

Permalink
Merge pull request conda#10617 from awwad/windows_av_bugfix
Browse files Browse the repository at this point in the history
Windows bugfix for artifact verification caused by URL pathsep issue
  • Loading branch information
chenghlee committed Apr 14, 2021
2 parents 8e51ebb + 81f4b12 commit df7655a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

* Fix version detection for `__linux` virtual package (#10599)
* Fix import from `conda_content_trust` (#10589)
* Fix how URL for verification metadata files are constructed (#10617)
* Partially fix profile `$PATH` setup on MSYS2 (#10459)
* Remove `.empty` directory even when `rsync` is not installed (#10331)

Expand Down
2 changes: 1 addition & 1 deletion conda/core/subdir_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def fetch_channel_signing_data(signing_data_url, filename, etag=None, mod_stamp=

try:
timeout = context.remote_connect_timeout_secs, context.remote_read_timeout_secs
file_url = join(signing_data_url, filename)
file_url = join_url(signing_data_url, filename)

# The `auth` arugment below looks a bit weird, but passing `None` seems
# insufficient for suppressing modifying the URL to add an Anaconda
Expand Down

0 comments on commit df7655a

Please sign in to comment.