Hello guys in my code i'm getting this stack:
Traceback (most recent call last):
File "main.py", line 30, in <module>
print nova.put_server_metadata("48f366bd-e9c9-47b5-a41f-ca9bcac2d945","labeltest","2.0")
TypeError: 'str' object is not callable
but i've no idea, about this error, i've tried to put a print inside my method "put_server_metadata", but it's not printing on screen, follow the code:
Main class:
import novaapiclient
import novaauth
if __name__ == "__main__":
nova = novaapiclient.NovaAPIClient("http://192.168.100.142:35357/v2.0/tokens")
nova.makeAuth("adminUser", "secretword", "2ad1fc162c254e59bea043560b7f73cb")
print nova.put_server_metadata("48f366bd-e9c9-47b5-a41f-ca9bcac2d945","labeltest","2.0")
And my put_server_metadata code:
def put_server_metadata(self, serv_id, label, version):
if self.auth.isAuthed():
c = pycurl.Curl()
printer = cStringIO.StringIO()
url = self.auth.getComputeURL() + "/servers/%s/metadata" % serv_id
json_put = file('json_server_put_metadata.json','r+w')
new_js = str(self.put_server_metadata) % (label, version)
json_put.seek(0)
json_put.write(new_js)
json_put.truncate()
json_put.close()
json_to_send = file('json_server_put_metadata.json','r+w')
siz = os.path.getsize("json_server_put_metadata.json")
tok = str(self.auth.getAuthToken())
final_tok = "X-Auth-Token: %s" % tok
content_len = "Content-length: %d" % siz
cont_type = "Content-Type: application/json"
accept = "Accept: application/json"
c.setopt(pycurl.URL, url)
c.setopt(pycurl.PUT, 1)
c.setopt(pycurl.HTTPHEADER, [final_tok, cont_type, accept, content_len])
c.setopt(pycurl.INFILE, json_to_send)
c.setopt(pycurl.INFILESIZE, siz)
c.setopt(pycurl.WRITEFUNCTION, printer.write)
c.setopt(pycurl.VERBOSE, 1)
c.perform()
c.close()
return printer.getvalue()
else:
return "Not authorized"
From the error message, it would appear that
put_server_metadata
is used both as a method and as a string. The following hints at the same:If were you, I'd search through the code for all occurrences of
put_server_metadata
and would take it from there.