`cat ~/diff-sunet/$num/log`
This commit is contained in:
parent
6f27658c68
commit
4673e0012f
|
@ -181,6 +181,7 @@
|
||||||
(with-cwd surflet-path
|
(with-cwd surflet-path
|
||||||
(begin
|
(begin
|
||||||
(register-instance! session-id)
|
(register-instance! session-id)
|
||||||
|
(session-adjust-timeout! session-id)
|
||||||
(resume s-req)))
|
(resume s-req)))
|
||||||
(bad-request path-string s-req)))
|
(bad-request path-string s-req)))
|
||||||
(bad-request path-string s-req)))
|
(bad-request path-string s-req)))
|
||||||
|
@ -201,8 +202,6 @@
|
||||||
(session (session-lookup session-id)))
|
(session (session-lookup session-id)))
|
||||||
;; the instance might be deleted in the meanwhile
|
;; the instance might be deleted in the meanwhile
|
||||||
(if session
|
(if session
|
||||||
(begin
|
|
||||||
(session-adjust-timeout! session-id)
|
|
||||||
(let ((continuations-table (session-continuation-table session))
|
(let ((continuations-table (session-continuation-table session))
|
||||||
(continuation-table-lock (session-continuation-table-lock session))
|
(continuation-table-lock (session-continuation-table-lock session))
|
||||||
(continuation-counter (session-next-continuation-counter session)))
|
(continuation-counter (session-next-continuation-counter session)))
|
||||||
|
@ -215,7 +214,7 @@
|
||||||
session-id
|
session-id
|
||||||
continuation-counter
|
continuation-counter
|
||||||
continuation-id)))
|
continuation-id)))
|
||||||
(make-http-response (response-maker new-url))))))
|
(make-http-response (response-maker new-url)))))
|
||||||
(make-error-response (status-code not-found) #f
|
(make-error-response (status-code not-found) #f
|
||||||
"The URL refers to a SUrflet, whose session is no longer alive.")))))
|
"The URL refers to a SUrflet, whose session is no longer alive.")))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue