From 81c5995a8c8f05fae1880f1de6bd44b1a6e7cbb3 Mon Sep 17 00:00:00 2001 From: Gregory Boddin Date: Thu, 3 Jun 2021 02:53:52 +0200 Subject: [PATCH] [test-fix] Added a TLS session cache, lower --- l9plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/l9plugin.go b/l9plugin.go index d25bb68..6cbfaf4 100644 --- a/l9plugin.go +++ b/l9plugin.go @@ -25,7 +25,7 @@ type ServicePluginInterface interface { type ServicePluginBase struct { } -var TlsSessionCache = tls.NewLRUClientSessionCache(4096*1024) +var TlsSessionCache = tls.NewLRUClientSessionCache(4096) func (plugin ServicePluginBase) Init() error { return nil