diff --git a/debian/changelog b/debian/changelog index 14a0af7c45c391a23e730ce459dfc8da199a025e..27c7db2446a93037a2ab8c28fb11864d7ddc2c88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,5 @@ -node-max-timeout (1.0.0-1) UNRELEASED; urgency=low +node-max-timeout (1.0.0-1) experimental; urgency=low - * Initial release (Closes: #nnnn) - * New upstream release + * Initial release (Closes: #854560) -- Abhishek Lolage <abhisheklolage@gmail.com> Wed, 08 Feb 2017 11:28:19 +0000 diff --git a/debian/control b/debian/control index f21411a27ce1498f757f9932e4aeb97b11f1ead4..77d697c3065d83386f8e1162f334a0b75863359e 100644 --- a/debian/control +++ b/debian/control @@ -17,7 +17,10 @@ Architecture: all Depends: ${misc:Depends} , nodejs -Description: The max amount of milliseconds you can pass to `setTimeout()` - FIX_ME long description +Description: Max amount of milliseconds that can be passed to `setTimeout()` + Values larger than the one returned from this module, 2147483647 (~25 days), + are too big to fit into a signed 32-bit integer, + which is how JS engines store it, and will cause overflow, + resulting in the timeout being scheduled immediately. . Node.js is an event-based server-side JavaScript engine.