node.js - How to change Nodejs etimeout time? -
i have question etimedout time in nodejs. how alter etimedout time 20 seconds 5 seconds?
connection.on('connect',function () { console.log('blabal'); }).on('error',function(){ console.log('blabal'); });
so if can't connect etimedout message shown after 20 seconds want alter 5 seconds.it's thrift connection btw :)
greetz,
frank
from api docs, http://nodejs.org/api/net.html#net_socket_settimeout_timeout_callback:
connection.settimeout(5000);
node.js
No comments:
Post a Comment