dennisv / django-storage-swift

OpenStack Swift storage backend for Django
MIT License
86 stars 60 forks source link

http_conn was renamed to swift_conn #106

Closed ergofriend closed 1 year ago

ergofriend commented 5 years ago
>>> from django.core.files.storage import default_storage
>>> default_storage.http_conn
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "C:\Python37\lib\site-packages\django\utils\functional.py", line 214, in inner
    return func(self._wrapped, *args)
AttributeError: 'SwiftStorage' object has no attribute 'http_conn'
>>> default_storage.swift_conn
<swiftclient.client.Connection object at 0x000001E679679C50>
einarf commented 5 years ago

Where is this a problem?

ergofriend commented 5 years ago

In the README https://github.com/dennisv/django-storage-swift#use