Advertisement
Guest User

Untitled

a guest
Jun 6th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. curl -v -X PUT -H 'X-Auth-Token: AUTH_tk7c8365fd0d3f433ab87c353e3ee107c5' http://127.0.0.1:6012/v1.0/AUTH_test/pictures -k
  2. * About to connect() to 127.0.0.1 port 6012 (#0)
  3. * Trying 127.0.0.1... connected
  4. * Connected to 127.0.0.1 (127.0.0.1) port 6012 (#0)
  5. > PUT /v1.0/AUTH_test/pictures HTTP/1.1
  6. > User-Agent: curl/7.19.7 (x86_64-redhat-linux-gnu) libcurl/7.19.7 NSS/3.13.1.0 zlib/1.2.3 libidn/1.18 libssh2/1.2.2
  7. > Host: 127.0.0.1:6012
  8. > Accept: */*
  9. > X-Auth-Token: AUTH_tk7c8365fd0d3f433ab87c353e3ee107c5
  10. >
  11. < HTTP/1.1 500 Internal Server Error
  12. < Content-Type: text/html; charset=UTF-8
  13. < Content-Length: 1450
  14. < Date: Wed, 06 Jun 2012 20:29:37 GMT
  15. <
  16. Traceback (most recent call last):
  17. File "/usr/lib/python2.6/site-packages/swift/account/server.py", line 361, in __call__
  18. res = getattr(self, req.method)(req)
  19. File "/usr/lib/python2.6/site-packages/swift/account/server.py", line 98, in PUT
  20. broker = self._get_account_broker(drive, part, account)
  21. File "/usr/lib/python2.6/site-packages/swift/account/server.py", line 62, in _get_account_broker
  22. return DiskAccount(self.root, account, self.fs_object);
  23. File "/usr/lib/python2.6/site-packages/swift/plugins/DiskDir.py", line 403, in __init__
  24. check_valid_account(account, fs_object)
  25. File "/usr/lib/python2.6/site-packages/swift/plugins/utils.py", line 343, in check_valid_account
  26. return _check_valid_account(account, fs_object)
  27. File "/usr/lib/python2.6/site-packages/swift/plugins/utils.py", line 329, in _check_valid_account
  28. if not check_account_exists(fs_object.get_export_from_account_id(account), fs_object):
  29. File "/usr/lib/python2.6/site-packages/swift/plugins/Glusterfs.py", line 126, in get_export_from_account_id
  30. for export in self.get_export_list():
  31. File "/usr/lib/python2.6/site-packages/swift/plugins/Glusterfs.py", line 119, in get_export_list
  32. return self.get_export_list_local()
  33. File "/usr/lib/python2.6/site-packages/swift/plugins/Glusterfs.py", line 80, in get_export_list_local
  34. raise Exception('Getting volume failed %s', self.name)
  35. Exception: ('Getting volume failed %s', 'glusterfs')
  36. * Connection #0 to host 127.0.0.1 left intact
  37. * Closing connection #0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement