Hi,
In phpnats/src/Nats/Connection.php line 180, you use the function "number_format" without the optional parameters.
number_format(3600, 3) outputs "3,600.000", so the timeout is set to 3 seconds instead of 1 hour.
Code should be
number_format($timeout, 3, '.', ''); //http://php.net/manual/en/function.number-format.php
This outputs the desired result: 3600.000
Hi,
In phpnats/src/Nats/Connection.php line 180, you use the function "number_format" without the optional parameters.
number_format(3600, 3)outputs "3,600.000", so the timeout is set to 3 seconds instead of 1 hour.Code should be
number_format($timeout, 3, '.', ''); //http://php.net/manual/en/function.number-format.phpThis outputs the desired result: 3600.000