Skip to content

Commit

Permalink
Issue #58: fix calling logic for ZnGemServerLogSupport>>handleBreakpo…
Browse files Browse the repository at this point in the history
…intException:resumeIfResumable:
  • Loading branch information
dalehenrich committed Dec 11, 2014
1 parent ed1375d commit 951b76e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ executeRequestResponseLoopOn: stream
value: self
during: [ [ self executeOneRequestResponseOn: stream ] whileFalse ] ]
on: self log breakpointExceptionSet
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode ]
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode not ]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"closeSocketStream:" : "SvenVanCaekenberghe 9/5/2011 14:15",
"exceptionSet:" : "SvenVanCaekenberghe 10/4/2011 09:46",
"executeOneRequestResponseOn:" : "dkh 11/30/2014 09:44",
"executeRequestResponseLoopOn:" : "dkh 12/11/2014 06:46",
"executeRequestResponseLoopOn:" : "dkh 12/11/2014 14:05",
"listenLoop" : "dkh 12/06/2014 12:35",
"notifyUnreportableError:" : "dkh 06/29/2014 23:12",
"readRequestBadExceptionSet" : "SvenVanCaekenberghe 5/14/2013 10:43",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ serveConnectionOn: listeningSocket
[
[ self executeOneRequestResponseOn: stream ]
on: self log breakpointExceptionSet
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode ] ]
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode not ] ]
ensure: [
self log debug: 'Closing stream'.
stream close ] ]
ifCurtailed: [
self log debug: 'Destroying socket'.
socket destroy ] ]
on: self log breakpointExceptionSet
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode ]
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode not ]
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"process" : "SvenVanCaekenberghe 12/10/2010 13:54",
"readRequest:" : "SvenVanCaekenberghe 9/5/2012 12:49",
"releaseServerSocket" : "dkh 06/25/2014 07:40",
"serveConnectionOn:" : "dkh 12/11/2014 06:46",
"serveConnectionOn:" : "dkh 12/11/2014 14:05",
"serverProcessName" : "SvenVanCaekenberghe 12/13/2010 16:42",
"serverSocket" : "SvenVanCaekenberghe 12/10/2010 13:54",
"socketStreamOn:" : "SvenVanCaekenberghe 11/10/2011 13:18",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ executeRequestResponseLoopOn: streamTransientStackValue
value: self
during: [ [ self executeOneRequestResponseOn: streamTransientStackValue ] whileFalse ] ]
on: self log breakpointExceptionSet
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode ]
do: [ :ex | self log handleBreakpointException: ex resumeIfResumable: self debugMode not ]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"closeSocketStream:" : "dkh 12/08/2014 15:21",
"connections" : "dkh 12/09/2014 10:01",
"executeOneRequestResponseOn:" : "dkh 12/08/2014 15:59",
"executeRequestResponseLoopOn:" : "dkh 12/11/2014 06:46",
"executeRequestResponseLoopOn:" : "dkh 12/11/2014 14:05",
"initializeServerSocket" : "dkh 12/09/2014 10:02",
"listenLoop" : "dkh 12/08/2014 15:54",
"lock" : "dkh 12/08/2014 15:21",
Expand Down
2 changes: 1 addition & 1 deletion repository/Zinc-HTTP.package/monticello.meta/version

Large diffs are not rendered by default.

0 comments on commit 951b76e

Please sign in to comment.