That warning means you don't have enough threads to handle your incoming requests and you have connections waiting to get a response from your WSGI server.
I wonder if we need better heuristics or some tuning for it, right now it starts logging warnings if there is 1 item in the queue waiting to be processed. You can disable logging of that warning by disabling logging for waitress.queue, using the standard Python logging setup. Bert > On Jan 3, 2019, at 03:06, Lele Gaifax <[email protected]> wrote: > > Bert JW Regeer <[email protected]> writes: > >> It was a simple change, uploaded a new version. >> >> https://pypi.org/project/waitress/1.2.0b2/ >> <https://pypi.org/project/waitress/1.2.0b2/> >> >> pip install waitress==1.2.0b2 > > Thank you Bert! > > Sorry to bother you again, but with 1.2.0b2 (I did not notice it with b1, but > it seems unlikely it is related to b2 changes) I see the following warning now > and then, always with depth=1: > > waitress.queue: Task queue depth is 1 > > Will try to get a backtrace if needed. > > ciao, lele. > -- > nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri > real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia. > [email protected] | -- Fortunato Depero, 1929. > > -- > You received this message because you are subscribed to the Google Groups > "pylons-discuss" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/pylons-discuss/87sgyadpi6.fsf%40metapensiero.it. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pylons-discuss/DAAC1CE2-C7D8-42E6-814F-B955974A0AC5%400x58.com. For more options, visit https://groups.google.com/d/optout.
