From ef0a05987724bc15543db7e589f7ce7f20be603a Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Fri, 3 Jun 2022 04:00:13 +0300 Subject: [PATCH] Fix `Poll` --- tap/tlstapper/tls_tapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap/tlstapper/tls_tapper.go b/tap/tlstapper/tls_tapper.go index 2de87466b..30950c082 100644 --- a/tap/tlstapper/tls_tapper.go +++ b/tap/tlstapper/tls_tapper.go @@ -59,8 +59,8 @@ func (t *TlsTapper) Init(chunksBufferSize int, logBufferSize int, procfs string, } func (t *TlsTapper) Poll(emitter api.Emitter, options *api.TrafficFilteringOptions, streamsMap api.TcpStreamMap) { - t.poller.pollSsllib(emitter, options, streamsMap) t.poller.pollGolang(emitter, options, streamsMap) + t.poller.pollSsllib(emitter, options, streamsMap) } func (t *TlsTapper) PollForLogging() {