Skip to content

Commit

Permalink
Issue #46: add SpSocketError to ZnMultiThreadedServer>>readRequestTer…
Browse files Browse the repository at this point in the history
…minationExceptionSet and ZnMultiThreadedServer>>writeResponseTerminationExceptionSet
  • Loading branch information
dalehenrich committed Dec 11, 2014
1 parent 951b76e commit a540447
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
private
readRequestTerminationExceptionSet
"Return the set of exceptions which, when they occur while reading a request,
"Return the set of exceptions which, when they occur while reading a request,
are interpreted as equivalent to a timeout or connection close."

^ self
exceptionSet:
#(#ConnectionClosed #ConnectionTimedOut #PrimitiveFailed)
^ self
exceptionSet:
#(#'ConnectionClosed' #'ConnectionTimedOut' #'PrimitiveFailed' #'SpSocketError')
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
private
writeResponseTerminationExceptionSet
"Return the set of exceptions which, when they occur while writing a response,
"Return the set of exceptions which, when they occur while writing a response,
are interpreted as equivalent to a timeout or connection close."

^ self exceptionSet: #(#ConnectionClosed #ConnectionTimedOut #PrimitiveFailed)
^ self
exceptionSet:
#(#'ConnectionClosed' #'ConnectionTimedOut' #'PrimitiveFailed' #'SpSocketError')
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"notifyUnreportableError:" : "dkh 06/29/2014 23:12",
"readRequestBadExceptionSet" : "SvenVanCaekenberghe 5/14/2013 10:43",
"readRequestSafely:" : "dkh 12/11/2014 06:26",
"readRequestTerminationExceptionSet" : "SvenVanCaekenberghe 5/27/2013 14:57",
"readRequestTerminationExceptionSet" : "dkh 12/11/2014 14:41",
"serveConnectionsOn:" : "dkh 12/06/2014 12:37",
"workerProcessName" : "SvenVanCaekenberghe 12/13/2010 16:33",
"writeResponseBad:on:" : "SvenVanCaekenberghe 5/14/2013 10:48",
"writeResponseSafely:on:" : "dkh 06/29/2014 10:49",
"writeResponseTerminationExceptionSet" : "SvenVanCaekenberghe 5/14/2013 10:39" } }
"writeResponseTerminationExceptionSet" : "dkh 12/11/2014 14:42" } }
2 changes: 1 addition & 1 deletion repository/Zinc-HTTP.package/monticello.meta/version

Large diffs are not rendered by default.

0 comments on commit a540447

Please sign in to comment.