fix: find process error
This commit is contained in:
parent
14dafb2d5c
commit
bb9fac37ae
1 changed files with 9 additions and 11 deletions
|
@ -386,9 +386,8 @@ func match(metadata *C.Metadata) (C.Proxy, C.Rule, error) {
|
|||
resolved = true
|
||||
}
|
||||
|
||||
if !foundProcess && alwaysFindProcess && rule.ShouldFindProcess() {
|
||||
if !foundProcess && (alwaysFindProcess || rule.ShouldFindProcess()) {
|
||||
srcPort, err := strconv.ParseUint(metadata.SrcPort, 10, 16)
|
||||
if err == nil && P.ShouldFindProcess(metadata) {
|
||||
uid, path, err := P.FindProcessName(metadata.NetWork.String(), metadata.SrcIP, int(srcPort))
|
||||
if err != nil {
|
||||
log.Debugln("[Process] find process %s: %v", metadata.String(), err)
|
||||
|
@ -399,7 +398,6 @@ func match(metadata *C.Metadata) (C.Proxy, C.Rule, error) {
|
|||
foundProcess = true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if foundProcess {
|
||||
metadata.Uid = &processUid
|
||||
|
|
Loading…
Reference in a new issue