Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion limited-thread-taskmaster.asd
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
(asdf:defsystem :limited-thread-taskmaster
:description "A taskmaster for Hunchentoot that limits the number of worker threads."
:author "Bill St. Clair <[email protected]>"
:version "1.0"
:version "1.1"
:license "Apache"
:depends-on (hunchentoot eager-future)
:components
Expand Down
4 changes: 2 additions & 2 deletions src/taskmaster.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ LIMIT must be an integer >= 2."
#+ccl
(setf (ccl:process-name thread) "Hunchentoot worker (idle)"))))
(error (cond)
;; need to bind *ACCEPTOR* so that LOG-MESSAGE can do its work.
;; need to bind *ACCEPTOR* so that LOG-MESSAGE* can do its work.
(let ((hunchentoot:*acceptor* (hunchentoot:taskmaster-acceptor taskmaster)))
(hunchentoot:log-message
(hunchentoot:log-message*
hunchentoot:*lisp-errors-log-level*
"Error while scheduling new incoming connection: ~A"
cond))))))
Expand Down