Merge "Dell SC driver calls out the wrong REST API version"

This commit is contained in:
Jenkins 2015-05-01 06:08:24 +00:00 committed by Gerrit Code Review
commit 7a4dd75265
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class HttpClient(object):
self.session.auth = (user, password)
self.header = {}
self.header['Content-Type'] = 'application/json; charset=utf-8'
self.header['x-dell-api-version'] = '1.5'
self.header['x-dell-api-version'] = '2.0'
self.verify = False
def __enter__(self):