You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2012/10/01 19:57:56 UTC

svn commit: r1392484 - /libcloud/trunk/libcloud/common/openstack.py

Author: tomaz
Date: Mon Oct  1 17:57:55 2012
New Revision: 1392484

URL: http://svn.apache.org/viewvc?rev=1392484&view=rev
Log:
Default to Auth API 2.0 in the openstack connection.

Modified:
    libcloud/trunk/libcloud/common/openstack.py

Modified: libcloud/trunk/libcloud/common/openstack.py
URL: http://svn.apache.org/viewvc/libcloud/trunk/libcloud/common/openstack.py?rev=1392484&r1=1392483&r2=1392484&view=diff
==============================================================================
--- libcloud/trunk/libcloud/common/openstack.py (original)
+++ libcloud/trunk/libcloud/common/openstack.py Mon Oct  1 17:57:55 2012
@@ -31,7 +31,7 @@ try:
 except ImportError:
     import json
 
-AUTH_API_VERSION = '1.1'
+AUTH_API_VERSION = '2.0'
 
 __all__ = [
     "OpenStackBaseConnection",