diff --git a/pkg/network/protocols/http2/protocol.go b/pkg/network/protocols/http2/protocol.go index 82a48762f21c4..c7842e9fccd13 100644 --- a/pkg/network/protocols/http2/protocol.go +++ b/pkg/network/protocols/http2/protocol.go @@ -385,7 +385,7 @@ func (p *Protocol) setupHTTP2InFlightMapCleaner(mgr *manager.Manager) { } ttl := p.cfg.HTTPIdleConnectionTTL.Nanoseconds() - mapCleaner.Clean(p.cfg.HTTPMapCleanerInterval, nil, nil, func(now int64, key http2StreamKey, val EbpfTx) bool { + mapCleaner.Clean(p.cfg.HTTP2DynamicTableMapCleanerInterval, nil, nil, func(now int64, key http2StreamKey, val EbpfTx) bool { if updated := int64(val.Stream.Response_last_seen); updated > 0 { return (now - updated) > ttl }