I am using Testify on a WAMP system and it works great. However, when I run on a linux server, i run into very peculiar behavior:
If i call the public test() function more than 10 times, I get a 502 Bad Gateway error.
I simplified my test case and only instantiated the class, and called the "test" function about 30 times, only specifying an assert(true) in each of them. After about 30 of them, I again saw the 502 error.
It doesn't seem to be a memory issue, the server is plenty powerful and there's no memory limit.
I am using Testify on a WAMP system and it works great. However, when I run on a linux server, i run into very peculiar behavior:
If i call the public test() function more than 10 times, I get a 502 Bad Gateway error.
I simplified my test case and only instantiated the class, and called the "test" function about 30 times, only specifying an assert(true) in each of them. After about 30 of them, I again saw the 502 error.
It doesn't seem to be a memory issue, the server is plenty powerful and there's no memory limit.
Any insights would be very helpful. Louis W