Closed cjmateos closed 9 years ago
Odd, I'm not getting this error and have been running that code for a long time. That code is used to diagnose large dict keys which would prevent mongodb from saving reports. The reason it works if you use upstream's mongodb.py is because their doesn't have this check and will just fail to save the report.
What version of python?
Thanks for your response. I use python 2.6.6
Use python 2.7... alternatively you could change line 76 to:
totals = dict((k: 0 for k in dct.keys()))
Or like, dict((k, 0) for k in dct)
.
Hi team,
In the first execution of cuckoo modified I get the following error:
If I replace mongodb.py file with the original cuckoo release the error disapears.
Thanks in advance