Hi i run into this problem, did search online but cannot find exact answer yet.
Basically i'm doing a POST from web client, node.js server will pick it up and starts to execute the command.
If it works, this command (say my_cmd 1234) finishes within 30 seconds, and angular gets the response and updates the status in the webpage.
Now if i pass in an different for this command (my_cmd 2345), it takes 3 minutes to finish, i did run this by hand in the linux console. After 3 minutes it does finish and prints out status message. But Angular POST returns net::ERR_EMPTY_RESPONSE.
So is there a default timeout value i should set ? Thanks !