I cannot reproduce this. You will need to figure out what is leaking exactly. Monitor the memory usage of the process and make some requests from the server, see which requests are causing the increase in memory consumption, and note that the server is written in python which automatically manages memory so monitoring memory is not completely straightforward as python will not always relinquish memory to the OS completely, so to detect a leak you need to make the same request repeatedly and check that the memory usage climbs by approximately the same amount each time.
|