Skip to content

Commit

Permalink
Don't drop into debugger for errors encountered when closing stream.
Browse files Browse the repository at this point in the history
  • Loading branch information
gigamonkey committed Jan 12, 2012
1 parent f98fecb commit 54a06df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,8 @@ different thread than accept-connection is running in."
;; As we are at the end of the requests here, we ignore
;; all errors that may occur while flushing and/or closing
;; the stream.
(ignore-errors* (force-output content-stream))
(ignore-errors* (close content-stream :abort t))))))))
(ignore-errors (force-output content-stream))
(ignore-errors (close content-stream :abort t))))))))

(defun process-request (request)
"Process a single request. Called repeatedly by process-connection."
Expand Down

0 comments on commit 54a06df

Please sign in to comment.