From f4516bd373812b81261c3018c39de7b6fe141d6b Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Sun, 6 Feb 2022 08:31:50 -0600 Subject: binding of dynamic variables pushed to run-endpoint --- lazybones-hunchentoot.lisp | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'lazybones-hunchentoot.lisp') diff --git a/lazybones-hunchentoot.lisp b/lazybones-hunchentoot.lisp index 2b84ac1..1e62b85 100644 --- a/lazybones-hunchentoot.lisp +++ b/lazybones-hunchentoot.lisp @@ -122,11 +122,9 @@ the value of the Content-Type request header." :address "0.0.0.0")) (defmethod h:acceptor-dispatch-request ((acceptor lazybones-acceptor) request) - (let ((lzb:*request* request) - (lzb:*response* h:*reply*)) - (loop for app in (acceptor-apps acceptor) - for (endpoint . args) = (lzb:find-endpoint app request) - when endpoint - return (lzb:run-endpoint endpoint args request) - ;; if no endpoint was found, call next method. - finally (call-next-method)))) + (loop for app in (acceptor-apps acceptor) + for (endpoint . args) = (lzb:find-endpoint app request) + when endpoint + return (lzb:run-endpoint endpoint args request h:*reply* app) + ;; if no endpoint was found, call next method. + finally (call-next-method))) -- cgit v1.2.3