I am trying to do some simple load tests using the ZeroRPC python server and node.js client. I notice that if the request takes more than 10 seconds, I do not return data. I tried to set up no heartbeat in python code:
s = zerorpc.Server(Test(), heartbeat=None)
as well as to configure the node.js client:
new zerorpc.Client({ timeout: 60, heartbeatInterval: 60000 }),
but still see the same behavior.
How can I get queries that take more than 10 seconds to return results?
source
share