I realized I had this problem with hunchentoot-1.0. I corrected it for myself, tested within a month and wrote up in my blog on January 9. This happened before the release of version 1.1.   In hunchentoot-1.0 is the following code:<div>
<br></div><div><div>#-:lispworks</div><div>(defmethod handle-incoming-connection ((taskmaster one-thread-per-connection-taskmaster) socket)</div><div>  (bt:make-thread (lambda ()</div><div>                    (process-connection (taskmaster-acceptor taskmaster) socket))</div>
<div>                  :name (format nil "Hunchentoot worker \(client: ~A)" (client-as-string socket))))</div><div><br></div><div>Which is now fixed, but it seems there was no special message about it:)</div><div>
<br></div><div>Andrey</div><br><div class="gmail_quote">2010/1/26 Hans Hübner <span dir="ltr"><<a href="mailto:hans.huebner@gmail.com">hans.huebner@gmail.com</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Tue, Jan 26, 2010 at 11:29, Andrey Moskvitin <<a href="mailto:archimag@gmail.com">archimag@gmail.com</a>> wrote:<br>
>> I think you need to set *CATCH-ERRORS-P* to a non-NIL value in order<br>
>> to prevent the debugger from being entered when an error is signaled.<br>
> Of course, this is a working server and * catch-errors-p * is set to T.<br>
> The problem arises not because of this.<br>
<br>
</div>[...]<br>
<div class="im"><br>
>> >  23: (SB-IMPL::%WITH-STANDARD-IO-SYNTAX #)<br>
>> >  24: (INVOKE-DEBUGGER #)<br>
>> >  25: (ERROR SB-BSD-SOCKETS:NOT-CONNECTED-ERROR)[:EXTERNAL]<br>
<br>
</div>Can you then please explain why INVOKE-DEBUGGER is called?  From my<br>
reading of the source code, it would only be called if<br>
*CATCH-ERRORS-P* is NIL, but I may be missing something.<br>
<div><div></div><div class="h5"><br>
-Hans<br>
<br>
_______________________________________________<br>
tbnl-devel site list<br>
<a href="mailto:tbnl-devel@common-lisp.net">tbnl-devel@common-lisp.net</a><br>
<a href="http://common-lisp.net/mailman/listinfo/tbnl-devel" target="_blank">http://common-lisp.net/mailman/listinfo/tbnl-devel</a><br>
</div></div></blockquote></div><br></div>