We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55242ab commit 3f70820Copy full SHA for 3f70820
src/portal/runtime/clr/server.clj
@@ -88,6 +88,7 @@
88
(tap> (Throwable->map e)))
89
(finally
90
(close-debug debug)
91
+ (rt/reset-session session)
92
(swap! rt/connections dissoc (:session-id session)))))))
93
94
(defn- send-resource [content-type resource]
src/portal/runtime/jvm/server.clj
@@ -86,6 +86,7 @@
86
:on-close
87
(fn [_ch _status]
(swap! rt/connections dissoc (:session-id session)))})))
(defmethod route [:get "/rpc"] [request]
src/portal/runtime/node/server.cljs
@@ -73,6 +73,7 @@
73
(op req done)))))
74
(.on ws "close"
75
(fn []
76
77
(swap! rt/connections dissoc (:session-id session)))))))))
78
79
(defn- send-resource [^js res content-type body]
0 commit comments