Fixed #34 Bug when admin adding user
This commit is contained in:
parent
6b5aa8fc33
commit
c94d85d2e7
@ -72,11 +72,15 @@ if __name__ == '__main__':
|
|||||||
'X-Auth-Admin-Key': options.admin_key}
|
'X-Auth-Admin-Key': options.admin_key}
|
||||||
if options.suffix:
|
if options.suffix:
|
||||||
headers['X-Account-Suffix'] = options.suffix
|
headers['X-Account-Suffix'] = options.suffix
|
||||||
conn = http_connect(parsed.hostname, parsed.port, 'PUT', path, headers,
|
conn = http_connect(parsed.hostname, parsed.port, 'GET', path, headers,
|
||||||
ssl=(parsed.scheme == 'https'))
|
ssl=(parsed.scheme == 'https'))
|
||||||
resp = conn.getresponse()
|
resp = conn.getresponse()
|
||||||
if resp.status // 100 != 2:
|
if resp.status // 100 != 2:
|
||||||
print 'Account creation failed: %s %s' % (resp.status, resp.reason)
|
conn = http_connect(parsed.hostname, parsed.port, 'PUT', path, headers,
|
||||||
|
ssl=(parsed.scheme == 'https'))
|
||||||
|
resp = conn.getresponse()
|
||||||
|
if resp.status // 100 != 2:
|
||||||
|
print 'Account creation failed: %s %s' % (resp.status, resp.reason)
|
||||||
# Add the user
|
# Add the user
|
||||||
path = '%sv2/%s/%s' % (parsed_path, account, user)
|
path = '%sv2/%s/%s' % (parsed_path, account, user)
|
||||||
headers = {'X-Auth-Admin-User': options.admin_user,
|
headers = {'X-Auth-Admin-User': options.admin_user,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user