Merge "Don't recommend to overwrite imported `session` variable"

This commit is contained in:
Jenkins 2017-03-17 18:55:39 +00:00 committed by Gerrit Code Review
commit 8aae889f26
1 changed files with 2 additions and 2 deletions

View File

@ -35,10 +35,10 @@ Keystone Session
project_domain_name='Default')
# Create session
session = session.Session(auth=auth)
keystone_session = session.Session(auth=auth)
# Create swiftclient Connection
swift_conn = Connection(session=session)
swift_conn = Connection(session=keystone_session)
Keystone v3
~~~~~~~~~~~