Hello!

In your GIT repository for core/stats.c
https://github.com/unbit/uwsgi/blob/b265ed83135b0e708b26be885dd8fadebf4e53cb/core/stats.c

i see around line 443:

if (nevents < 0) {
                        uwsgi_log_verbose("ending the stats pusher 
thread...\n");
                        return;
                }


But in the released 1.9.19 I see:

if (nevents < 0) {
                        if (errno == EINTR) continue;
                        uwsgi_log_verbose("ending the stats pusher thread...\n")
;
                        return;
                }


(plus errno check).

Why there is a difference between 1.9.19 and GIT?

Thanks!



On 09 нояб. 2013 г., at 12:13, Roberto De Ioris <[email protected]> wrote:

> Hi everyone, uWSGI 1.9.19 is available.
> 
> This is the last "feature-rich" release for the 1.9 tree. From now on
> (until the end of the year) we will work on stabilization, deprecation and
> upgrades from 1.4 in preparation for 2.0.
> 
> New features for this release are the long-awaited Metrics subsystem,
> Tornado support, and the new "template" transformation.
> 
> Changelog available here:
> 
> 
> http://uwsgi-docs.readthedocs.org/en/latest/Changelog-1.9.19.html
> 
> -- 
> Roberto De Ioris
> http://unbit.it
> _______________________________________________
> uWSGI mailing list
> [email protected]
> http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to