From a01f264ce7f0971a193d0be850008a25a1858147 Mon Sep 17 00:00:00 2001 From: Osbert Feng Date: Fri, 8 Mar 2019 11:01:58 -0800 Subject: [PATCH] [#337] Fix incorrect value (only udt) swapped into conns_ (@osbert) The value stored per client session is [server-channel-socket, timestamp] but in this particular instance only the timestamp was swapped in. --- src/taoensso/sente.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taoensso/sente.cljc b/src/taoensso/sente.cljc index 1b69606..e7ea38c 100644 --- a/src/taoensso/sente.cljc +++ b/src/taoensso/sente.cljc @@ -700,7 +700,7 @@ (fn [[_sch udt-t1]] (if (= udt-t1 udt-close) (swapped :swap/dissoc true) - (swapped udt-t1 false))))] + (swapped [_sch udt-t1] false))))] (when disconnect?