Fix/ebpf free (#1057)

* Fix ebpf free call

* Add debug logs
This commit is contained in:
Zoltan Papp
2023-08-07 11:43:32 +02:00
committed by GitHub
parent 973316d194
commit 8eca83f3cb
4 changed files with 4 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ func (w *Factory) GetProxy() Proxy {
func (w *Factory) Free() error {
if w.ebpfProxy != nil {
return w.ebpfProxy.CloseConn()
return w.ebpfProxy.Free()
}
return nil
}