Skip to content

Commit

Permalink
Revert S3 client initialization added in conda#10516 (conda#10759)
Browse files Browse the repository at this point in the history
* Revert "Don't create unused s3 client at import time (conda#10516)" [commit 1456484]
* Update changelog

Fix conda#10756.
  • Loading branch information
jezdez authored Jun 30, 2021
1 parent 729e8b2 commit 248741a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 4.10.3 (2021-06-29)

### Bug fixes

* Reverts "Don't create an unused S3 client at import time (#10516)"
in 4.10.2 that introduced a regression for users using S3 based
channels. (#10756)

## 4.10.2 (2021-06-25)

### Enhancements
Expand Down
1 change: 1 addition & 0 deletions conda/gateways/connection/adapters/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
try:
import boto3
have_boto3 = True
boto3.client('s3') # https://github.com/conda/conda/issues/8993
except ImportError:
try:
import boto
Expand Down

0 comments on commit 248741a

Please sign in to comment.