Created
March 21, 2013 19:45
-
-
Save jasonjohnson/5216077 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git libcloud/compute/drivers/softlayer.py libcloud/compute/drivers/softlayer.py | |
index babc89c..92be797 100644 | |
--- libcloud/compute/drivers/softlayer.py | |
+++ libcloud/compute/drivers/softlayer.py | |
@@ -108,7 +108,8 @@ class SoftLayerResponse(XMLRPCResponse): | |
class SoftLayerConnection(XMLRPCConnection, ConnectionUserAndKey): | |
responseCls = SoftLayerResponse | |
- endpoint = '/xmlrpc/v3/' | |
+ base_url = 'https://api.softlayer.com' | |
+ endpoint = '/xmlrpc/v3' | |
def request(self, service, method, *args, **kwargs): | |
headers = {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment