Skip to content

Commit 27b2e5a

Browse files
committed
Silence lint error
Lint rules for `netty/channel-handler` and friends will be provided in the future.
1 parent 5548a51 commit 27b2e5a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/aleph/tcp_ssl_test.clj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@
6565
(deftest test-connection-close-during-ssl-handshake
6666
(let [ssl-session (atom nil)
6767
connection-closed (promise)
68-
notify-connection-closed (netty/channel-handler
69-
:channel-inactive
70-
([_ ctx]
71-
(deliver connection-closed true)
72-
(.fireChannelInactive ctx)))]
68+
notify-connection-closed #_:clj-kondo/ignore (netty/channel-handler
69+
:channel-inactive
70+
([_ ctx]
71+
(deliver connection-closed true)
72+
(.fireChannelInactive ctx)))]
7373
(with-server (tcp/start-server (ssl-echo-handler ssl-session)
7474
{:port 10001
7575
:ssl-context ssl/server-ssl-context

0 commit comments

Comments
 (0)