pmarcinkiew / iotjs

Platform for Internet of Things with JavaScript http://www.iotjs.net
Other
0 stars 1 forks source link

Fix server double close in dgram ttl tests #44

Closed tosyu closed 6 years ago

tosyu commented 6 years ago

IoT.js-DCO-1.0-Signed-off-by: Krzysztof Antoszek k.antoszek@samsung.com

pmarcinkiew commented 6 years ago

The test was invalid because it created timeout two times for two received messages so connections was closed two times. The timeout was moved to server listen event because it is triggered only once.

tosyu commented 6 years ago

done