Hi Hans,
On 5-Dec-08, at 12:50 AM, Hans Hübner wrote:
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?
We are using the latest release at the moment. Would you recommend trying out the development version? Where could that be obtained?
Thanks for your help,
- Scott
Scott,
the development version of Hunchentoot can be obtained by
svn co svn://bknr.net/trunk/ediware
This will also check out the updated versions of Hunchentoot's dependencies. The new version is not yet finished, and it is not API compatible. You need to spend some time on converting your application. We have scheduled a release engineering session for Hunchentoot in January, but please do not hold your breath.
-Hans
On Fri, Dec 5, 2008 at 18:33, sblist@me.com wrote:
Hi Hans,
On 5-Dec-08, at 12:50 AM, Hans Hübner wrote:
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?
We are using the latest release at the moment. Would you recommend trying out the development version? Where could that be obtained?
Thanks for your help,
- Scott
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
Hans,
We might not be ready to jump to the development version just yet, but here's the simple fix to resolve the issue in the current release:
--- headers-other.lisp 2008-12-12 16:10:31.000000000 -0700 +++ headers.lisp 2008-12-12 15:49:15.000000000 -0700 @@ -281,6 +281,7 @@ (read-line* *hunchentoot-stream*) ((or end-of-file #+:sbcl sb-sys:io-timeout + #+:ccl ccl:input-timeout #+:cmu sys:io-timeout #+:allegro excl:socket-error) () nil)))))
Thanks for all of the help,
- Scott
On 5-Dec-08, at 11:21 AM, Hans Hübner wrote:
Scott,
the development version of Hunchentoot can be obtained by
svn co svn://bknr.net/trunk/ediware
This will also check out the updated versions of Hunchentoot's dependencies. The new version is not yet finished, and it is not API compatible. You need to spend some time on converting your application. We have scheduled a release engineering session for Hunchentoot in January, but please do not hold your breath.
-Hans
On Sat, Dec 13, 2008 at 21:26, sblist@me.com wrote:
the development version of Hunchentoot can be obtained by
svn co svn://bknr.net/trunk/ediware
This URL is wrong, please use svn://bknr.net/svn/ediware
Apologies, Hans