Hi folks,
We have an application using Hunchentoot currently running on SBCL and Allegro, and we're investigating the possibility of using CCL additionally. I'm able to get the application up and running, but after each web request (which is successful, from the perspective of the client), I receive the following in the debugger:
Input timeout on #<BASIC-TCP-STREAM ISO-8859-1 (SOCKET/7) #x30004277FD9D> [Condition of type INPUT-TIMEOUT]
Has anyone else encountered this before or have any idea on how to proceed with resolving the issue?
Thanks,
- Scott Bell
On Fri, Dec 5, 2008 at 02:04, Scott Bell sblist@me.com wrote:
Hi folks,
We have an application using Hunchentoot currently running on SBCL and Allegro, and we're investigating the possibility of using CCL additionally. I'm able to get the application up and running, but after each web request (which is successful, from the perspective of the client), I receive the following in the debugger:
Input timeout on #<BASIC-TCP-STREAM ISO-8859-1 (SOCKET/7) #x30004277FD9D> [Condition of type INPUT-TIMEOUT]
Has anyone else encountered this before or have any idea on how to proceed with resolving the issue?
This happens when a connection times out - It is "normal", but the condition is not properly caught in the worker thread function. We will fix the problem in the upcoming (!) release, but until then, you can just ignore it. Do you use the release or the development version of Hunchentoot?
-Hans