Skip to content

Instantly share code, notes, and snippets.

@jasonjohnson
Created March 21, 2013 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonjohnson/5216077 to your computer and use it in GitHub Desktop.
Save jasonjohnson/5216077 to your computer and use it in GitHub Desktop.
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