summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcarsonoid <ca@carsonoid.net>2013-02-21 15:49:17 -0700
committerSage Weil <sage@inktank.com>2013-03-05 11:03:08 -0800
commitb244b87f2892cdd28bbce800de26ce95953ca803 (patch)
treeaa29f68da5151cff0d227bcc2591315e65d99564
parent3bd48cbbadb7908dd833ccde75359f085828fc5c (diff)
downloadceph-b244b87f2892cdd28bbce800de26ce95953ca803.tar.gz
Update doc/radosgw/s3/python.rst
Note about creating conn object for non-ssl implementations.
-rw-r--r--doc/radosgw/s3/python.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/radosgw/s3/python.rst b/doc/radosgw/s3/python.rst
index c5a8432485a..6bd01d6cee7 100644
--- a/doc/radosgw/s3/python.rst
+++ b/doc/radosgw/s3/python.rst
@@ -19,6 +19,7 @@ This creates a connection so that you can interact with the server.
aws_access_key_id = access_key,
aws_secret_access_key = secret_key,
host = 'objects.dreamhost.com',
+ #is_secure=False, # uncommmnt if you are not using ssl
calling_format = boto.s3.connection.OrdinaryCallingFormat(),
)