Skip to content

Commit

Permalink
Merge pull request #214 from foretspaisibles/ensure-that-easy-handler…
Browse files Browse the repository at this point in the history
…-is-composable

Ensure that an EASY-ACCEPTOR is composable with other acceptors
  • Loading branch information
hanshuebner authored Mar 24, 2023
2 parents 8ec6f28 + 38d7e73 commit 5cb8ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion easy-handlers.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ either return a handler or neglect by returning NIL."
(loop for dispatcher in *dispatch-table*
for action = (funcall dispatcher request)
when action return (funcall action)
finally (call-next-method)))
finally (return (call-next-method))))

#-:hunchentoot-no-ssl
(defclass easy-ssl-acceptor (easy-acceptor ssl-acceptor)
Expand Down

0 comments on commit 5cb8ed1

Please sign in to comment.