We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be5f0ba commit 1cc49ceCopy full SHA for 1cc49ce
src/grongier/cls/Grongier/Service/WSGI.cls
@@ -31,9 +31,7 @@ ClassMethod Page(skipheader As %Boolean = 0) As %Status [ ProcedureBlock = 1 ]
31
Set %response.Domain = ..#DOMAIN
32
Do %response.MatchLanguage()
33
34
- if ..#DEVMODE {
35
- w %session.SessionId
36
- }
+
37
38
#; Record if device re-direction is already active
39
Set tRedirected=##class(%Library.Device).ReDirectIO()
@@ -110,6 +108,11 @@ ClassMethod Page(skipheader As %Boolean = 0) As %Status [ ProcedureBlock = 1 ]
110
108
Do ##class(%Library.Device).ReDirectIO(1)
111
109
}
112
+ if ..#DEVMODE {
+ #; Close the device to ensure next request starts with a new process
113
+ Close 0
114
+ }
115
116
Quit $$$OK
117
118
0 commit comments